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

Commit 04cc1d2

Browse files
FelipeLahtipkozlowski-opensource
authored andcommitted
docs(guide): add missing closing div tag
1 parent 7d4a321 commit 04cc1d2

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

docs/content/guide/dev_guide.mvc.understanding_controller.ngdoc

+3-2
Original file line numberDiff line numberDiff line change
@@ -178,8 +178,9 @@ have a look at an example:
178178
<body ng-controller="MainCtrl">
179179
<p>Good {{timeOfDay}}, {{name}}!</p>
180180
<div ng-controller="ChildCtrl">
181-
<p>Good {{timeOfDay}}, {{name}}!</p>
182-
<p ng-controller="BabyCtrl">Good {{timeOfDay}}, {{name}}!</p>
181+
<p>Good {{timeOfDay}}, {{name}}!</p>
182+
<p ng-controller="BabyCtrl">Good {{timeOfDay}}, {{name}}!</p>
183+
</div>
183184
</body>
184185

185186
function MainCtrl($scope) {

0 commit comments

Comments
 (0)