aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/cookbook/helloworld.ngdoc
diff options
context:
space:
mode:
authorVojta Jina2012-03-13 13:52:57 -0700
committerVojta Jina2012-03-13 13:52:57 -0700
commit63be222326f3badbb76371f82d49fed5ab9e3e65 (patch)
treedec4d6f0e8fb72d8226f5a40cb4783b8e3787313 /docs/content/cookbook/helloworld.ngdoc
parenta29c2cf70cb19f9fb4be2b62e7acd4054751ac51 (diff)
downloadangular.js-63be222326f3badbb76371f82d49fed5ab9e3e65.tar.bz2
docs(input): Fix some broken links, add missing $, use ng- in examples
Diffstat (limited to 'docs/content/cookbook/helloworld.ngdoc')
-rw-r--r--docs/content/cookbook/helloworld.ngdoc4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/cookbook/helloworld.ngdoc b/docs/content/cookbook/helloworld.ngdoc
index 0d9f882a..629a3893 100644
--- a/docs/content/cookbook/helloworld.ngdoc
+++ b/docs/content/cookbook/helloworld.ngdoc
@@ -9,8 +9,8 @@
$scope.name = 'World';
}
</script>
- <div ng:controller="HelloCntl">
- Your name: <input type="text" ng:model="name" value="World"/>
+ <div ng-controller="HelloCntl">
+ Your name: <input type="text" ng-model="name" value="World"/>
<hr/>
Hello {{name}}!
</div>