From badeb6e2df49969408d838c7c11007302426f79a Mon Sep 17 00:00:00 2001 From: Aaron McCollum <59707347+aaronmccollum@users.noreply.github.com> Date: Sat, 18 Sep 2021 21:13:05 +0900 Subject: [PATCH] fix(curriculum): reworded grammar to do without hyphen (#43487) Suggesting the removal of "-" on line 29 in the description, as the comma before "such" is sufficient to separate the examples from the rest of the sentence. --- .../basic-javascript/build-javascript-objects.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/build-javascript-objects.md b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/build-javascript-objects.md index b67d8c4d52..a8a1b8cbf8 100644 --- a/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/build-javascript-objects.md +++ b/curriculum/challenges/english/02-javascript-algorithms-and-data-structures/basic-javascript/build-javascript-objects.md @@ -26,7 +26,7 @@ var cat = { }; ``` -In this example, all the properties are stored as strings, such as - `name`, `legs`, and `tails`. However, you can also use numbers as properties. You can even omit the quotes for single-word string properties, as follows: +In this example, all the properties are stored as strings, such as `name`, `legs`, and `tails`. However, you can also use numbers as properties. You can even omit the quotes for single-word string properties, as follows: ```js var anotherObject = {