From 722d1368580d73a14954274e78973bcc261a013e Mon Sep 17 00:00:00 2001 From: Kelly Downes Date: Tue, 15 Jan 2019 15:23:05 -0800 Subject: [PATCH] Fix typo: add 'y' to truthy (#27517) --- .../everything-be-true/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/everything-be-true/index.md b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/everything-be-true/index.md index b83fe1dbe6..5683897aa9 100644 --- a/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/everything-be-true/index.md +++ b/guide/english/certifications/javascript-algorithms-and-data-structures/intermediate-algorithm-scripting/everything-be-true/index.md @@ -22,7 +22,7 @@ Remember to iterate through the first argument to check each object. ## ![:speech_balloon:](https://forum.freecodecamp.com/images/emoji/emoji_one/speech_balloon.png?v=3 ":speech_balloon:") Hint: 2 -Only if all of them are truth will we return true, so make sure all of them check. +Only if all of them are truthy will we return true, so make sure all of them check. > _try to solve the problem now_