From b11dd87047f40c4c4412ecf784d7446c5ad2a4fb Mon Sep 17 00:00:00 2001 From: Randell Dawson <5313213+RandellDawson@users.noreply.github.com> Date: Tue, 23 Feb 2021 10:21:58 -0700 Subject: [PATCH] fix: remove sentence not needed (#41235) --- .../return-a-value-from-a-function-with-return.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/return-a-value-from-a-function-with-return.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/return-a-value-from-a-function-with-return.md index ba5ddcc985..1ba77e0bff 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/return-a-value-from-a-function-with-return.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/return-a-value-from-a-function-with-return.md @@ -24,7 +24,7 @@ var answer = plusThree(5); // 8 # --instructions-- -Create a function `timesFive` that accepts one argument, multiplies it by `5`, and returns the new value. See the last line in the editor for an example of how you can test your `timesFive` function. +Create a function `timesFive` that accepts one argument, multiplies it by `5`, and returns the new value. # --hints--