diff options
Diffstat (limited to 'docs/content/tutorial/step_10.ngdoc')
| -rw-r--r-- | docs/content/tutorial/step_10.ngdoc | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/content/tutorial/step_10.ngdoc b/docs/content/tutorial/step_10.ngdoc index 3a8dbd38..109f5b77 100644 --- a/docs/content/tutorial/step_10.ngdoc +++ b/docs/content/tutorial/step_10.ngdoc @@ -42,7 +42,7 @@ function PhoneDetailCtrl($xhr) {    $xhr('GET', 'phones/' + self.params.phoneId + '.json', function(code, response) {      self.phone = response; -    self.mainImageUrl = response.images; +    self.mainImageUrl = response.images[0];    }); | 
