docs(guide): add missing closing div tag

This commit is contained in:
Felipe Lahti 2013-03-27 00:55:58 -03:00 committed by Pawel Kozlowski
parent 7d4a3210f0
commit 04cc1d2890

View file

@ -178,8 +178,9 @@ have a look at an example:
<body ng-controller="MainCtrl">
<p>Good {{timeOfDay}}, {{name}}!</p>
<div ng-controller="ChildCtrl">
<p>Good {{timeOfDay}}, {{name}}!</p>
<p ng-controller="BabyCtrl">Good {{timeOfDay}}, {{name}}!</p>
<p>Good {{timeOfDay}}, {{name}}!</p>
<p ng-controller="BabyCtrl">Good {{timeOfDay}}, {{name}}!</p>
</div>
</body>
function MainCtrl($scope) {