Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5fd39e0 commit d1b49e2Copy full SHA for d1b49e2
src/auto/injector.js
@@ -100,15 +100,15 @@ function annotate(fn) {
100
*
101
* <pre>
102
* // inferred (only works if code not minified/obfuscated)
103
- * $inject.invoke(function(serviceA){});
+ * $injector.invoke(function(serviceA){});
104
105
* // annotated
106
* function explicit(serviceA) {};
107
* explicit.$inject = ['serviceA'];
108
- * $inject.invoke(explicit);
+ * $injector.invoke(explicit);
109
110
* // inline
111
- * $inject.invoke(['serviceA', function(serviceA){}]);
+ * $injector.invoke(['serviceA', function(serviceA){}]);
112
* </pre>
113
114
* ## Inference
0 commit comments