From 32af03686442c90b6b842f9b3a5e66e244704112 Mon Sep 17 00:00:00 2001 From: Amarkant Kumar Date: Sat, 15 Apr 2017 01:14:38 +0530 Subject: [PATCH] Create article.md typo for evaluates words. --- 1-js/02-first-steps/15-function-expressions-arrows/article.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/1-js/02-first-steps/15-function-expressions-arrows/article.md b/1-js/02-first-steps/15-function-expressions-arrows/article.md index 7c7d5ff3..44cf3764 100644 --- a/1-js/02-first-steps/15-function-expressions-arrows/article.md +++ b/1-js/02-first-steps/15-function-expressions-arrows/article.md @@ -372,7 +372,7 @@ There's one more syntax for creating functions -- very simple and concise. It's let func = (arg1, arg2, ...argN) => expression ``` -...This creates a function `func` that has arguments `arg1..argN`, evaludates the `expression` on the right side with their use and returns its result. +...This creates a function `func` that has arguments `arg1..argN`, evaluates the `expression` on the right side with their use and returns its result. In other words, it's roughly the same as: