From f247b6a19a5a71248b9e58bbc367c3eb0c665166 Mon Sep 17 00:00:00 2001 From: haftav <23143092+haftav@users.noreply.github.com> Date: Sat, 8 Dec 2018 12:51:07 -0700 Subject: [PATCH] Wording update (#28125) --- guide/english/javascript/scopes/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/javascript/scopes/index.md b/guide/english/javascript/scopes/index.md index 58ca0b80a8..1bf505ebeb 100644 --- a/guide/english/javascript/scopes/index.md +++ b/guide/english/javascript/scopes/index.md @@ -82,7 +82,7 @@ Any RHS references inside `bar`'s local scope can be fullfilled by LHS reference **You can only traverse down a scope chain, not up.** -There are other two important things you should know about JavaScript scopes. +There are two other important things you should know about JavaScript scopes. 1. Scopes are declared by functions, not by blocks. 2. Functions can be forward-referenced, variables can't.