aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJesse Palmer2014-01-30 22:10:08 -0500
committerCaitlin Potter2014-02-11 18:42:16 -0500
commit686b13bf60e5b2d3d904fde5c076e50faaf9bcb7 (patch)
tree7ec9a4ad82e36a0e73de7db141e4042ea4cc8a8a /src
parent56cc7bcc983d05237705390935b7b808215a0b47 (diff)
downloadangular.js-686b13bf60e5b2d3d904fde5c076e50faaf9bcb7.tar.bz2
docs(core): add closing tag to ngApp directive example
added missing closing tag to ngApp example. Closes #6066
Diffstat (limited to 'src')
-rw-r--r--src/Angular.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/Angular.js b/src/Angular.js
index e9d1de88..bccaeebd 100644
--- a/src/Angular.js
+++ b/src/Angular.js
@@ -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) {