From 7ce8c587099fc4d8c8f555c6ecef9febefa0c3b7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timo=20K=C3=B6hler?= Date: Wed, 25 Nov 2020 23:32:14 +0100 Subject: [PATCH] Put value into quotes (#40172) * Put value into quotes It can be missunderstanding that "value" is a string! * fix: remove quotes from inside code tags Co-authored-by: Nicholas Carrigan (he/him) Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Co-authored-by: Nicholas Carrigan (he/him) --- .../use-arrow-functions-to-write-concise-anonymous-functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions.md index f865d890fb..ac8fb73490 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/es6/use-arrow-functions-to-write-concise-anonymous-functions.md @@ -32,7 +32,7 @@ When there is no function body, and only a return value, arrow function syntax a const myFunc = () => "value"; ``` -This code will still return value by default. +This code will still return the string value by default. ## Instructions