From e5505cbe7b38117e51cc67f72464647be4d32090 Mon Sep 17 00:00:00 2001 From: dogfood654 <69853396+dogfood654@users.noreply.github.com> Date: Wed, 16 Jun 2021 21:35:34 +0800 Subject: [PATCH] fix(curriculum): minor indentation for readability (#42451) * Fixed minor indentation for readability * amended to 2 indentation --- .../basic-javascript/profile-lookup.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/profile-lookup.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/profile-lookup.md index 36cbecd62c..310597ad6f 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/profile-lookup.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/profile-lookup.md @@ -96,10 +96,10 @@ var contacts = [ ]; -function lookUpProfile(name, prop){ -// Only change code below this line +function lookUpProfile(name, prop) { + // Only change code below this line -// Only change code above this line + // Only change code above this line } lookUpProfile("Akira", "likes");