chore(injector): fix typo in injector documentation

This commit is contained in:
sqwishy trick
2012-10-25 20:41:47 -07:00
committed by Igor Minar
parent 249a1d84e7
commit 271d2bed3a

View File

@@ -20,7 +20,7 @@
* // create an injector
* var $injector = angular.injector(['ng']);
*
* // use the injector to kick of your application
* // use the injector to kick off your application
* // use the type inference to auto inject arguments, or use implicit injection
* $injector.invoke(function($rootScope, $compile, $document){
* $compile($document)($rootScope);