Skip to content
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.

Commit

Permalink
docs(guide): add missing closing div tag
Browse files Browse the repository at this point in the history
  • Loading branch information
FelipeLahti authored and pkozlowski-opensource committed Mar 29, 2013
1 parent 7d4a321 commit 04cc1d2
Showing 1 changed file with 3 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -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) {
Expand Down

0 comments on commit 04cc1d2

Please sign in to comment.