aboutsummaryrefslogtreecommitdiffstats
path: root/src/ngResource/resource.js
diff options
context:
space:
mode:
authorCedric Soulas2013-02-10 20:40:23 +0100
committerJames deBoer2013-02-14 11:57:33 -0800
commite47f8d2b9660527d7a62eb3e56a3e4f7f1c272f1 (patch)
tree3014288c5ad2306d755242cf9843e4530b2c135d /src/ngResource/resource.js
parentdba6bc73e802fdae685a9f351d3e23c7efa8568a (diff)
downloadangular.js-e47f8d2b9660527d7a62eb3e56a3e4f7f1c272f1.tar.bz2
docs($resource): fix missing punctuation
Diffstat (limited to 'src/ngResource/resource.js')
-rw-r--r--src/ngResource/resource.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ngResource/resource.js b/src/ngResource/resource.js
index 0d5c2b39..81b57f43 100644
--- a/src/ngResource/resource.js
+++ b/src/ngResource/resource.js
@@ -83,9 +83,9 @@
*
* Calling these methods invoke an {@link ng.$http} with the specified http method,
* destination and parameters. When the data is returned from the server then the object is an
- * instance of the resource class `save`, `remove` and `delete` actions are available on it as
- * methods with the `$` prefix. This allows you to easily perform CRUD operations (create, read,
- * update, delete) on server-side data like this:
+ * instance of the resource class. The actions `save`, `remove` and `delete` are available on it
+ * as methods with the `$` prefix. This allows you to easily perform CRUD operations (create,
+ * read, update, delete) on server-side data like this:
* <pre>
var User = $resource('/user/:userId', {userId:'@id'});
var user = User.get({userId:123}, function() {