Skip to content

Commit 0b3589b

Browse files
amcaplanlocks
authored andcommitted
Add in line that needs to be deleted (emberjs#1994)
Last time it was seen (previous page of the tutorial), the extra line was there.
1 parent c5d0406 commit 0b3589b

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

source/localizable/tutorial/subroutes.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -329,12 +329,13 @@ Alternately, you may just pass `rental.id` for clarity.
329329

330330
Clicking on the title will load the detail page for that rental.
331331

332-
```app/templates/components/rental-listing.hbs{+6}
332+
```app/templates/components/rental-listing.hbs{-6,+7}
333333
<article class="listing">
334334
<a {{action 'toggleImageSize'}} class="image {{if isWide "wide"}}">
335335
<img src="{{rental.image}}" alt="">
336336
<small>View Larger</small>
337337
</a>
338+
<h3>{{rental.title}}</h3>
338339
<h3>{{#link-to "rentals.show" rental}}{{rental.title}}{{/link-to}}</h3>
339340
<div class="detail owner">
340341
<span>Owner:</span> {{rental.owner}}

0 commit comments

Comments
 (0)