From ca2f024aec886a7e27fc49937af2ebb03cc6a6d5 Mon Sep 17 00:00:00 2001 From: zoembrown <84141954+zoembrown@users.noreply.github.com> Date: Sat, 12 Jun 2021 11:37:17 -0400 Subject: [PATCH] fix(curriculum): fixed typo in challenge (#42456) --- .../concatenating-strings-with-the-plus-equals-operator.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/concatenating-strings-with-the-plus-equals-operator.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/concatenating-strings-with-the-plus-equals-operator.md index dda39ce727..e3eeaef1c2 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/concatenating-strings-with-the-plus-equals-operator.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/concatenating-strings-with-the-plus-equals-operator.md @@ -24,7 +24,7 @@ ourStr += "I come second."; # --instructions-- -Build `myStr` over several lines by concatenating these two strings: `This is the first sentence. ` and `This is the second sentence.` using the `+=` operator. Use the `+=` operator similar to how it is shown in the editor. Start by assigning the first string to `myStr`, then add on the second string. +Build `myStr` over several lines by concatenating these two strings: `This is the first sentence. ` and `This is the second sentence.` using the `+=` operator. Use the `+=` operator similar to how it is shown in the example. Start by assigning the first string to `myStr`, then add on the second string. # --hints--