docs(tutorial/step-2): add missing span elements

In Lession 1 template has phone names within `span` element, while in
lession 2 the name is directly within the wrapper `div`

Closes #9670
This commit is contained in:
Starojitski
2014-10-17 21:39:14 +02:00
committed by Peter Bacon Darwin
parent 24d00cce4f
commit e5c53b393b

View File

@@ -40,7 +40,7 @@ __`app/index.html`:__
<ul>
<li ng-repeat="phone in phones">
{{phone.name}}
<span>{{phone.name}}</span>
<p>{{phone.snippet}}</p>
</li>
</ul>