From 120f418c417256cf313208a31b4012eec4018956 Mon Sep 17 00:00:00 2001 From: Kelly Downes Date: Tue, 15 Jan 2019 15:13:12 -0800 Subject: [PATCH] Fix typos: remove 's' from callback (#27512) --- .../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 53c9163950..d8dd97b5b5 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 @@ -30,7 +30,7 @@ Only if all of them are truth will we return true, so make sure all of them chec > _try to solve the problem now_ -You could use loops or callbacks functions, there are multiple ways to solve this problem. +You could use loops or callback functions, there are multiple ways to solve this problem. ## Spoiler Alert!