Skip to content

Commit 865f431

Browse files
doc(quick-start): more fixes
1 parent e30e85c commit 865f431

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

doc/article/en-US/quick-start.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -349,7 +349,7 @@ If you run the application again, you should now see something like this:
349349

350350
![Todo App With List](img/todo-app-with-list.png)
351351

352-
We're almost there! There's one thing that's missing. Notice that if you check and uncheck the boxes, nothing happens. We would like to have some user feedback in this case. Perhaps crossing out the tod item? Let's make one final version of our view to add that in:
352+
We're almost there! There's one thing that's missing. Notice that if you check and uncheck the boxes, nothing happens. We would like to have some user feedback in this case. Perhaps crossing out the todo item? Let's make one final version of our view to add that in:
353353

354354
<code-listing heading="app.html">
355355
<source-code lang="HTML">
@@ -374,7 +374,7 @@ We're almost there! There's one thing that's missing. Notice that if you check a
374374
</source-code>
375375
</code-listing>
376376

377-
This final example shows how we can bind css directly on any HTML element. It also shows how we can use our `${}` syntax directly inside any attribute. In this case, we want to add the `text-decoration` of `line-through` whenever the todo's `done` property is true, otherwise we want the `none` value.
377+
This final example shows how we can bind css directly on any HTML element. It also shows how we can use our `\${}` syntax directly inside any attribute. In this case, we want to add the `text-decoration` of `line-through` whenever the todo's `done` property is true, otherwise we want the `none` value.
378378

379379
Run the application one more time and you should see the expected result:
380380

0 commit comments

Comments
 (0)