From 08a21acbdb046d996c6c9a77dd3a8b89a0cef7fe Mon Sep 17 00:00:00 2001 From: Mau Di Bert Date: Wed, 6 Mar 2019 18:33:48 -0300 Subject: [PATCH] Update article.md don't know if is the word you would choose but there's a missing word there I think... --- 1-js/06-advanced-functions/13-generators/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/06-advanced-functions/13-generators/article.md b/1-js/06-advanced-functions/13-generators/article.md index 172ab247..df5e91a9 100644 --- a/1-js/06-advanced-functions/13-generators/article.md +++ b/1-js/06-advanced-functions/13-generators/article.md @@ -136,7 +136,7 @@ for(let value of generator) { } ``` -Naturally, as generators are iterable, we can all related functionality, e.g. the spread operator `...`: +Naturally, as generators are iterable, we can call all related functionality, e.g. the spread operator `...`: ```js run function* generateSequence() {