docs(guide/providers): remove extra closing parenthesis in example

Closes #5005
This commit is contained in:
Dave Gaeddert 2013-11-18 10:52:48 -06:00 committed by Pete Bacon Darwin
parent b4cf8483d7
commit 5f9121ad56

View file

@ -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);
}]);
}];
});
```