fix(curriculum): Add Missing Backticks (#48919)

* Add missing backticks

* Add missing backticks
This commit is contained in:
Sriparno Roy 2023-01-05 01:35:20 +05:30 committed by GitHub
parent fa25279a32
commit c72758a4f8
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ dashedName: step-67
# --description--
Finally, update the `text.innerText` assignment to equal the `text` from the location object. However, instead of using bracket notation, use <dfn>dot notation</dfn>. Here is an example of accessing the `name` property of an object called `obj`: `obj.name`.
Finally, update the `text.innerText` assignment to equal the `text` from the `location` object. However, instead of using bracket notation, use <dfn>dot notation</dfn>. Here is an example of accessing the `name` property of an object called `obj`: `obj.name`.
# --hints--

View File

@ -7,7 +7,7 @@ dashedName: step-83
# --description--
Similar to your `buyHealth` function, set `gold` equal to 30 less than its current value. Make sure this is inside your `if` statement.
Similar to your `buyHealth` function, set `gold` equal to `30` less than its current value. Make sure this is inside your `if` statement.
# --hints--