aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorVojta Jina2011-06-16 16:27:46 +0200
committerVojta Jina2011-06-16 16:27:46 +0200
commitc8ee00cb2bfffcc25fdfc14c56b5b82cf71284d5 (patch)
treef80395c090de22925825c0981cfcd16529588987 /docs
parent7460a7ef618a274607ea99aecae99fb158115c36 (diff)
downloadangular.js-c8ee00cb2bfffcc25fdfc14c56b5b82cf71284d5.tar.bz2
Update docs from googledocs
* fixed typo in tutorial step-10 * revert cookbook/buzz example to use googlebuzz user
Diffstat (limited to 'docs')
-rw-r--r--docs/content/cookbook/buzz.ngdoc2
-rw-r--r--docs/content/tutorial/step_10.ngdoc2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/content/cookbook/buzz.ngdoc b/docs/content/cookbook/buzz.ngdoc
index 974a7c74..23473e56 100644
--- a/docs/content/cookbook/buzz.ngdoc
+++ b/docs/content/cookbook/buzz.ngdoc
@@ -32,7 +32,7 @@ to retrieve Buzz activity and comments.
};
</script>
<div ng:controller="BuzzController">
- <input name="userId" value="misko.hevery"/>
+ <input name="userId" value="googlebuzz"/>
<button ng:click="fetch()">fetch</button>
<hr/>
<div class="buzz" ng:repeat="item in activities.data.items">
diff --git a/docs/content/tutorial/step_10.ngdoc b/docs/content/tutorial/step_10.ngdoc
index 510eacd4..b4f0370d 100644
--- a/docs/content/tutorial/step_10.ngdoc
+++ b/docs/content/tutorial/step_10.ngdoc
@@ -113,7 +113,7 @@ angular's server}.
* Let's add a new controller method to `PhoneCatCtrl`:
- this.hello(name) = function(name) {
+ this.hello = function(name) {
alert('Hello ' + (name || 'world') + '!');
}