From 76647d38550682d337265ef4769697a19f5a65f3 Mon Sep 17 00:00:00 2001 From: Michael Payne Date: Thu, 24 Apr 2014 13:25:22 -0400 Subject: [PATCH] docs(guide/di): fix typo Fixed a typo. "depenendencies" -> "dependencies" Closes #7232 --- docs/content/guide/di.ngdoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/content/guide/di.ngdoc b/docs/content/guide/di.ngdoc index 9e9d7fb28..06a435328 100644 --- a/docs/content/guide/di.ngdoc +++ b/docs/content/guide/di.ngdoc @@ -207,7 +207,7 @@ someModule.factory('greeter', ['$window', function(renamed$window) { ``` Here, instead of simply providing the factory function, we pass an array, whose elements consist of -a list of strings (the names of the depenendencies) followed by the function itself. +a list of strings (the names of the dependencies) followed by the function itself. Keep in mind that all of the annotation styles are equivalent and can be used anywhere in Angular where injection is supported.