aboutsummaryrefslogtreecommitdiffstats
path: root/src/auto
diff options
context:
space:
mode:
authorIgor Minar2014-02-18 03:04:42 -0800
committerIgor Minar2014-02-18 10:44:48 -0800
commit481508d0e7ae9e4984ea380b9a43e589551c7a5b (patch)
tree2df21cbd83152c5e504cdc7f3b579b25bdc9fadb /src/auto
parent12e4d3ac4da3e7ea8d9be49764dbbc091a345bf7 (diff)
downloadangular.js-481508d0e7ae9e4984ea380b9a43e589551c7a5b.tar.bz2
style: remove ws and enfore no-trailing-ws jscs rule
Diffstat (limited to 'src/auto')
-rw-r--r--src/auto/injector.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/auto/injector.js b/src/auto/injector.js
index 62b52620..c39593f3 100644
--- a/src/auto/injector.js
+++ b/src/auto/injector.js
@@ -350,7 +350,7 @@ function annotate(fn) {
*
* - `Object`: then it should have a `$get` method. The `$get` method will be invoked using
* {@link auto.$injector#invoke $injector.invoke()} when an instance needs to be created.
- * - `Constructor`: a new instance of the provider will be created using
+ * - `Constructor`: a new instance of the provider will be created using
* {@link auto.$injector#instantiate $injector.instantiate()}, then treated as `object`.
*
* @returns {Object} registered provider instance
@@ -478,9 +478,9 @@ function annotate(fn) {
* var Ping = function($http) {
* this.$http = $http;
* };
- *
+ *
* Ping.$inject = ['$http'];
- *
+ *
* Ping.prototype.send = function() {
* return this.$http.get('/ping');
* };