From 4e079a5caf80d7897248086fde4fd0a2277dd37b Mon Sep 17 00:00:00 2001 From: gzmin Date: Wed, 15 May 2019 16:10:06 +0800 Subject: [PATCH] Fix Typo (brewity to brevity) --- 1-js/06-advanced-functions/03-closure/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/03-closure/article.md b/1-js/06-advanced-functions/03-closure/article.md index 0c7dcb9e..4c156896 100644 --- a/1-js/06-advanced-functions/03-closure/article.md +++ b/1-js/06-advanced-functions/03-closure/article.md @@ -309,7 +309,7 @@ alert( counter2() ); // 0 (independent) ``` -Hopefully, the situation with outer variables is clear now. For most situations such understanding is enough. There are few details in the specification that we omitted for brewity. So in the next section we cover even more details, not to miss anything. +Hopefully, the situation with outer variables is clear now. For most situations such understanding is enough. There are few details in the specification that we omitted for brevity. So in the next section we cover even more details, not to miss anything. ## Environments in detail