From 74a5c8d15ad260d1776af17de10230e5e2567cfa Mon Sep 17 00:00:00 2001 From: Mike Perry Yeboah Attara <31483629+mikeattara@users.noreply.github.com> Date: Sun, 18 Nov 2018 16:35:08 +0000 Subject: [PATCH] Fix inconsistent formatting of the welcomeToBooleans function (#34373) fix the inconsistency in the formatting of the function and also fix issue #34367 --- .../understanding-boolean-values.english.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/understanding-boolean-values.english.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/understanding-boolean-values.english.md index 5e700a55333..bac30a265af 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/understanding-boolean-values.english.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/understanding-boolean-values.english.md @@ -37,11 +37,11 @@ tests: ```js function welcomeToBooleans() { -// Only change code below this line. + // Only change code below this line. -return false; // Change this line + return false; // Change this line -// Only change code above this line. + // Only change code above this line. } ```