diff options
| author | Dave Gaeddert | 2013-11-18 10:52:48 -0600 |
|---|---|---|
| committer | Pete Bacon Darwin | 2013-11-20 11:30:45 +0000 |
| commit | 5f9121ad560d45ee638ad19f95d256ea45b064be (patch) | |
| tree | aa0004c0bd154370342935fabda2eb863cd9e013 | |
| parent | b4cf8483d75c6648ff21d25c38b1942cea360579 (diff) | |
| download | angular.js-5f9121ad560d45ee638ad19f95d256ea45b064be.tar.bz2 | |
docs(guide/providers): remove extra closing parenthesis in example
Closes #5005
| -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 adf13bd4..ae374f07 100644 --- a/docs/content/guide/providers.ngdoc +++ b/docs/content/guide/providers.ngdoc @@ -228,7 +228,7 @@ myApp.provider('unicornLauncher', function UnicornLauncherProvider() { // let's assume that the UnicornLauncher constructor was also changed to // accept and use the useTinfoilShielding argument return new UnicornLauncher(apiToken, useTinfoilShielding); - }]); + }]; }); ``` |
