Skip to content

Commit 5b1c0a3

Browse files
authored
Merge pull request #2074 from MLHale/patch-1
2 parents 5aa493b + 6643bdd commit 5b1c0a3

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

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

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,9 @@ Let's try it out by editing the index template:
6565
<h2>Welcome to Super Rentals!</h2>
6666
<p>We hope you find exactly what you're looking for in a place to stay.</p>
6767
<LinkTo @route="about" class="button">About Us</LinkTo>
68-
</div>
6968
</Jumbo>
69+
</div>
70+
7071
```
7172

7273
## Refactoring Existing Code
@@ -90,8 +91,8 @@ Let's do the same for our other two pages as well.
9091
AND building Ember applications.
9192
</p>
9293
<LinkTo @route="contact" class="button">Contact Us</LinkTo>
93-
</div>
9494
</Jumbo>
95+
</div>
9596
```
9697

9798
```handlebars { data-filename="app/templates/contact.hbs" data-diff="-1,-2,+3,-19,+20" }
@@ -113,8 +114,8 @@ Let's do the same for our other two pages as well.
113114
<a href="mailto:superrentalsrep@emberjs.com">superrentalsrep@emberjs.com</a>
114115
</address>
115116
<LinkTo @route="about" class="button">About</LinkTo>
116-
</div>
117117
</Jumbo>
118+
</div>
118119
```
119120

120121
After saving, everything should look exactly the same as before, and all the tests should still pass. Very nice!

0 commit comments

Comments
 (0)