Update docs from googledocs

* fixed typo in tutorial step-10
* revert cookbook/buzz example to use googlebuzz user
This commit is contained in:
Vojta Jina 2011-06-16 16:27:46 +02:00
parent 7460a7ef61
commit c8ee00cb2b
2 changed files with 2 additions and 2 deletions

View file

@ -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">

View file

@ -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') + '!');
}