mirror of
https://github.com/Hopiu/angular.js.git
synced 2026-05-03 20:54:43 +00:00
docs(guide): add missing closing div tag
This commit is contained in:
parent
7d4a3210f0
commit
04cc1d2890
1 changed files with 3 additions and 2 deletions
|
|
@ -178,8 +178,9 @@ have a look at an example:
|
||||||
<body ng-controller="MainCtrl">
|
<body ng-controller="MainCtrl">
|
||||||
<p>Good {{timeOfDay}}, {{name}}!</p>
|
<p>Good {{timeOfDay}}, {{name}}!</p>
|
||||||
<div ng-controller="ChildCtrl">
|
<div ng-controller="ChildCtrl">
|
||||||
<p>Good {{timeOfDay}}, {{name}}!</p>
|
<p>Good {{timeOfDay}}, {{name}}!</p>
|
||||||
<p ng-controller="BabyCtrl">Good {{timeOfDay}}, {{name}}!</p>
|
<p ng-controller="BabyCtrl">Good {{timeOfDay}}, {{name}}!</p>
|
||||||
|
</div>
|
||||||
</body>
|
</body>
|
||||||
|
|
||||||
function MainCtrl($scope) {
|
function MainCtrl($scope) {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue