diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/64ec94f0de20c086e09b0fc3.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/64ec94f0de20c086e09b0fc3.md index e2197b64f84..c501645808c 100644 --- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/64ec94f0de20c086e09b0fc3.md +++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/64ec94f0de20c086e09b0fc3.md @@ -7,7 +7,7 @@ dashedName: step-19 # --description-- -Create a `p` element and use template strings to set its content to the `title` you destructured. Right before the content of the `p` element, create a `strong` element with the text `Title:`. +Create a `p` element and use template strings to set its content to the `title` you destructured. Right before the content of the `p` element, create a `strong` element with the text `"Title:"`. # --hints-- @@ -29,7 +29,7 @@ You should create a `strong` element after the opening tag of your `p` element. assert.match(code, /
/)
```
-Your `strong` element should have the text `Title:`.
+Your `strong` element should have the text `"Title:"`.
```js
assert.match(code, / Title:\s*<\/strong>\s*/)
diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/64ec959a76336c8767f5cd4d.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/64ec959a76336c8767f5cd4d.md
index 1ed03870856..f2f4e1b703d 100644
--- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/64ec959a76336c8767f5cd4d.md
+++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/64ec959a76336c8767f5cd4d.md
@@ -7,7 +7,7 @@ dashedName: step-20
# --description--
-Similarly to the previous step, create another `p` element, and interpolate the `date` you destructured as the text content. Inside this paragraph, create a `strong` element with the text `Date:`.
+Similarly to the previous step, create another `p` element, and interpolate the `date` you destructured as the text content. Inside this paragraph, create a `strong` element with the text `"Date:"`.
# --hints--
@@ -17,7 +17,7 @@ You should create a `p` element and interpolate `${date}` as the text.
assert.match(code, / .*\$\{date\}<\/p>/)
```
-You should create a `strong` element with the text `Date:` after the opening tag of your `p` element.
+You should create a `strong` element with the text `"Date:"` after the opening tag of your `p` element.
```js
assert.match(code, / Date:\s*<\/strong>\s*/)
diff --git a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/64ec96761156a187ed32b274.md b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/64ec96761156a187ed32b274.md
index dc2e958a2ab..320f8daaf27 100644
--- a/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/64ec96761156a187ed32b274.md
+++ b/curriculum/challenges/english/15-javascript-algorithms-and-data-structures-22/learn-localstorage-by-building-a-todo-app/64ec96761156a187ed32b274.md
@@ -9,17 +9,17 @@ dashedName: step-22
To allow for task management, you need to include both a delete and an edit button for each task.
-Create two `button` elements with the `type` attribute set to `button` and the `class` attribute set to `btn`. Set the text of the first button to `Edit` and the text of the second button to `Delete`.
+Create two `button` elements with the `type` attribute set to `button` and the `class` attribute set to `btn`. Set the text of the first button to `"Edit"` and the text of the second button to `"Delete"`.
# --hints--
-You should create a `button` element of type `button`, a class `btn` and `Edit` as the text, in that order.
+You should create a `button` element of type `button`, a class `btn` and `"Edit"` as the text, in that order.
```js
assert.match(code, /