diff options
| author | Igor Minar | 2014-02-18 19:31:19 -0800 | 
|---|---|---|
| committer | Igor Minar | 2014-02-18 19:39:41 -0800 | 
| commit | 1523fc7e6d778b87d89458411013801fd00a5b9f (patch) | |
| tree | 05e38d7816e25e77119d722002d0484c791946be /docs/content/guide | |
| parent | a3f70172ef23585399f24011f72948f894e31e6f (diff) | |
| download | angular.js-1523fc7e6d778b87d89458411013801fd00a5b9f.tar.bz2 | |
docs(guide/providers): fix example snippet
Closes #6331
Closes #6332
Diffstat (limited to 'docs/content/guide')
| -rw-r--r-- | docs/content/guide/providers.ngdoc | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/docs/content/guide/providers.ngdoc b/docs/content/guide/providers.ngdoc index 648be74a..c2826e2f 100644 --- a/docs/content/guide/providers.ngdoc +++ b/docs/content/guide/providers.ngdoc @@ -150,7 +150,7 @@ custom type:  function UnicornLauncher(apiToken) {    this.launchedCount = 0; -  this.launch() { +  this.launch = function() {      // make a request to the remote api and include the apiToken      ...      this.launchedCount++; | 
