Skip to content

Commit 020ef8b

Browse files
authored
Fix improperly-applied diff highlighting (#2092)
This fixes several diffs which were marked as additions when they should have been deletions (or vice versa).
1 parent c6b0276 commit 020ef8b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

guides/release/tutorial/part-1/component-basics.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ When invoking a component, Ember will replace the component tag with the content
5858

5959
Let's try it out by editing the index template:
6060

61-
```handlebars { data-filename="app/templates/index.hbs" data-diff="-1,-2,+3,-7,+8" }
61+
```handlebars { data-filename="app/templates/index.hbs" data-diff="-1,-2,+3,+7,-8" }
6262
<div class="jumbo">
6363
<div class="right tomster"></div>
6464
<Jumbo>
@@ -80,7 +80,7 @@ After saving the changes, your page should automatically reload, and, _voilà_..
8080

8181
Let's do the same for our other two pages as well.
8282

83-
```handlebars { data-filename="app/templates/about.hbs" data-diff="-1,-2,+3,-11,+12" }
83+
```handlebars { data-filename="app/templates/about.hbs" data-diff="-1,-2,+3,+11,-12" }
8484
<div class="jumbo">
8585
<div class="right tomster"></div>
8686
<Jumbo>
@@ -95,7 +95,7 @@ Let's do the same for our other two pages as well.
9595
</div>
9696
```
9797

98-
```handlebars { data-filename="app/templates/contact.hbs" data-diff="-1,-2,+3,-19,+20" }
98+
```handlebars { data-filename="app/templates/contact.hbs" data-diff="-1,-2,+3,+19,-20" }
9999
<div class="jumbo">
100100
<div class="right tomster"></div>
101101
<Jumbo>

0 commit comments

Comments
 (0)