docs(core): add closing tag to ngApp directive example

added missing closing tag to ngApp example.

Closes #6066
This commit is contained in:
Jesse Palmer
2014-01-30 22:10:08 -05:00
committed by Caitlin Potter
parent 56cc7bcc98
commit 686b13bf60
+1
View File
@@ -1132,6 +1132,7 @@ function encodeUriQuery(val, pctEncodeSpaces) {
<file name="index.html">
<div ng-controller="ngAppDemoController">
I can add: {{a}} + {{b}} = {{ a+b }}
</div>
</file>
<file name="script.js">
angular.module('ngAppDemo', []).controller('ngAppDemoController', function($scope) {