From 67790aa261a4b63f2ac34d75974fe8697eaa1a8c Mon Sep 17 00:00:00 2001 From: Alex Zvorygin Date: Wed, 20 Sep 2017 11:52:58 -0400 Subject: [PATCH 1/2] change incorrect variable name solution and problem statement have the calls stored in `calls`, not `log` --- .../09-call-apply-decorators/01-spy-decorator/solution.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/09-call-apply-decorators/01-spy-decorator/solution.md b/1-js/06-advanced-functions/09-call-apply-decorators/01-spy-decorator/solution.md index 4a79d3e1..19a07201 100644 --- a/1-js/06-advanced-functions/09-call-apply-decorators/01-spy-decorator/solution.md +++ b/1-js/06-advanced-functions/09-call-apply-decorators/01-spy-decorator/solution.md @@ -1 +1 @@ -Here we can use `log.push(args)` to store all arguments in the log and `f.apply(this, args)` to forward the call. +Here we can use `calls.push(args)` to store all arguments in the log and `f.apply(this, args)` to forward the call. From 4b8f153f6d5bcaed1a63d24e377ef6274d24642d Mon Sep 17 00:00:00 2001 From: Felipe Lerma Date: Thu, 21 Sep 2017 11:13:58 -0700 Subject: [PATCH 2/2] Typo Fix on '1. Watch' section. Removed a double 'in in' on the '1. Watch...' section. --- 1-js/03-code-quality/01-debugging-chrome/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/03-code-quality/01-debugging-chrome/article.md b/1-js/03-code-quality/01-debugging-chrome/article.md index 14efb9a5..9c81d2dc 100644 --- a/1-js/03-code-quality/01-debugging-chrome/article.md +++ b/1-js/03-code-quality/01-debugging-chrome/article.md @@ -101,7 +101,7 @@ Please open the informational dropdowns to the right (labeled with arrows). They 1. **`Watch` -- shows current values for any expressions.** - You can click the plus `+` and input an expression. The debugger will show its value at any moment, automatically recalculating it in in the process of execution. + You can click the plus `+` and input an expression. The debugger will show its value at any moment, automatically recalculating it in the process of execution. 2. **`Call Stack` -- shows the nested calls chain.**