aboutsummaryrefslogtreecommitdiffstats
path: root/src/service
diff options
context:
space:
mode:
Diffstat (limited to 'src/service')
-rw-r--r--src/service/document.js2
-rw-r--r--src/service/resource.js2
-rw-r--r--src/service/window.js2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/service/document.js b/src/service/document.js
index 93d4d9a5..f15c5900 100644
--- a/src/service/document.js
+++ b/src/service/document.js
@@ -5,7 +5,7 @@
* @requires $window
*
* @description
- * Reference to the browser window.document, but wrapped into angular.element().
+ * A reference to the browser window.document, but wrapped into angular.element().
*/
angularServiceInject("$document", function(window){
return jqLite(window.document);
diff --git a/src/service/resource.js b/src/service/resource.js
index 9e86caa7..3cb7b6e8 100644
--- a/src/service/resource.js
+++ b/src/service/resource.js
@@ -5,7 +5,7 @@
* @requires $xhr.cache
*
* @description
- * Is a factory which creates a resource object that lets you interact with
+ * A factory which creates a resource object that lets you interact with
* [RESTful](http://en.wikipedia.org/wiki/Representational_State_Transfer) server-side data sources.
*
* The returned resource object has action methods which provide high-level behaviors without
diff --git a/src/service/window.js b/src/service/window.js
index 2392e7f9..412bf39b 100644
--- a/src/service/window.js
+++ b/src/service/window.js
@@ -4,7 +4,7 @@
* @name angular.service.$window
*
* @description
- * Is reference to the browser's `window` object. While `window`
+ * A reference to the browser's `window` object. While `window`
* is globally available in JavaScript, it causes testability problems, because
* it is a global variable. In angular we always refer to it through the
* `$window` service, so it may be overriden, removed or mocked for testing.