aboutsummaryrefslogtreecommitdiffstats
path: root/docs/content/cookbook/helloworld.ngdoc
diff options
context:
space:
mode:
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>