From a3a2ae36a7aa74aaefafdd76cbe8c0552065e975 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aleksander=20G=C4=99bicki?= Date: Sat, 9 Jan 2016 17:36:10 +0100 Subject: [PATCH] Correct mistyping in 'separated' word --- .../basic-javascript.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/challenges/01-front-end-development-certification/basic-javascript.json b/challenges/01-front-end-development-certification/basic-javascript.json index d1ca00ef8f..ab3f4aa0ef 100644 --- a/challenges/01-front-end-development-certification/basic-javascript.json +++ b/challenges/01-front-end-development-certification/basic-javascript.json @@ -3686,7 +3686,7 @@ "description": [ "You can run the same code multiple times by using a loop.", "The most common type of JavaScript loop is called a \"for loop\" because it runs \"for\" a specific number of times.", - "For loops are declared with three optional expressions seperated by semicolons:", + "For loops are declared with three optional expressions separated by semicolons:", "for ([initialization]; [condition]; [final-expression])", "The initialization statement is executed one time only before the loop starts. It is typically used to define and setup your loop variable.", "The condition statement is evaluated at the beginning of every loop iteration and will continue as long as it evalutes to true. When condition is false at the start of the iteration, the loop will stop executing. This means if condition starts as false, your loop will never execute.",