From 481508d0e7ae9e4984ea380b9a43e589551c7a5b Mon Sep 17 00:00:00 2001 From: Igor Minar Date: Tue, 18 Feb 2014 03:04:42 -0800 Subject: style: remove ws and enfore no-trailing-ws jscs rule --- src/auto/injector.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/auto') 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'); * }; -- cgit v1.2.3