From ae4bd3ef938e9834a575c8d734936d8b1fb12df4 Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 18 Feb 2014 19:31:19 -0800 Subject: [PATCH] docs(guide/providers): fix example snippet --- docs/content/guide/providers.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/providers.ngdoc b/docs/content/guide/providers.ngdoc index 648be74ac2be..c2826e2f749d 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++;