From c16ffbd6c0f5f5773a31e296312479d8da198ded Mon Sep 17 00:00:00 2001 From: Dim Date: Tue, 11 Nov 2014 12:19:36 +0100 Subject: [PATCH] typo --- docs/content/error/$injector/unpr.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/error/$injector/unpr.ngdoc b/docs/content/error/$injector/unpr.ngdoc index f4ceaef9a013..7a0d828f08c9 100644 --- a/docs/content/error/$injector/unpr.ngdoc +++ b/docs/content/error/$injector/unpr.ngdoc @@ -61,7 +61,7 @@ Attempting to inject one controller into another will also throw an `Unknown pro ``` angular.module('myModule', []) - .controller('MyFirstController', function() { /* ... */ }); + .controller('MyFirstController', function() { /* ... */ }) .controller('MySecondController', ['MyFirstController', function(MyFirstController) { // This controller throws an unknown provider error because // MyFirstController cannot be injected.