From 8a5711dda7b62b7c8e57d39131e3f86fc6f84491 Mon Sep 17 00:00:00 2001 From: lusc <61409445+melusc@users.noreply.github.com> Date: Thu, 4 Mar 2021 17:25:55 +0100 Subject: [PATCH] Fix: remove a colon in rosetta-code/happy-numbers (#41349) * Fix: remove a colon in rosetta-code/happy-numbers Removed a colon that shouldn't be there * Update curriculum/challenges/english/10-coding-interview-prep/rosetta-code/happy-numbers.md Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> * Add inline code tags around all true and falses https://github.com/freeCodeCamp/freeCodeCamp/pull/41349#discussion_r586700058 Co-authored-by: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> --- .../rosetta-code/happy-numbers.md | 22 +++++++++---------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/happy-numbers.md b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/happy-numbers.md index 6eb4988539..6cb33dbcaf 100644 --- a/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/happy-numbers.md +++ b/curriculum/challenges/english/10-coding-interview-prep/rosetta-code/happy-numbers.md @@ -30,67 +30,67 @@ assert(typeof happy === 'function'); assert(typeof happy(1) === 'boolean'); ``` -`happy(1)` should return true. +`happy(1)` should return `true`. ```js assert(happy(1)); ``` -`happy(2)` should return false. +`happy(2)` should return `false`. ```js assert(!happy(2)); ``` -`happy(7)` should return true. +`happy(7)` should return `true`. ```js assert(happy(7)); ``` -`happy(10)` should return true. +`happy(10)` should return `true`. ```js assert(happy(10)); ``` -`happy(13)` should return true. +`happy(13)` should return `true`. ```js assert(happy(13)); ``` -`happy(19)` should return true. +`happy(19)` should return `true`. ```js assert(happy(19)); ``` -`happy(23)` should return true. +`happy(23)` should return `true`. ```js assert(happy(23)); ``` -`happy(28)` should return true. +`happy(28)` should return `true`. ```js assert(happy(28)); ``` -`happy(31)` should return true. +`happy(31)` should return `true`. ```js assert(happy(31)); ``` -`happy(32)` should return true:. +`happy(32)` should return `true`. ```js assert(happy(32)); ``` -`happy(33)` should return false. +`happy(33)` should return `false`. ```js assert(!happy(33));