From 2c32658030352fe39f14bd6fdca8642cdd7bbb92 Mon Sep 17 00:00:00 2001 From: Maksim Balabash Date: Mon, 28 Feb 2022 16:39:46 +0200 Subject: [PATCH] Fix typo --- packages/eslint-plugin-prefer-let/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/eslint-plugin-prefer-let/README.md b/packages/eslint-plugin-prefer-let/README.md index a2fa69e..efcde86 100644 --- a/packages/eslint-plugin-prefer-let/README.md +++ b/packages/eslint-plugin-prefer-let/README.md @@ -8,7 +8,7 @@ long-standing conventions set forth by both formal symbolic logic and the practice of functional programming. Usage of the `const` keyword to bind an _intermediate_ value of a -computation places emphasis on the compiler and and its role in +computation places emphasis on the compiler and its role in ensuring that a _reference_ never changes. By contrast using `let` in the same situation reads, in plain English, the programmer's intent to declare a name value binding.