From e47f8d2b9660527d7a62eb3e56a3e4f7f1c272f1 Mon Sep 17 00:00:00 2001 From: Cedric Soulas Date: Sun, 10 Feb 2013 20:40:23 +0100 Subject: docs($resource): fix missing punctuation --- src/ngResource/resource.js | 6 +++--- 1 file 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: *
var User = $resource('/user/:userId', {userId:'@id'});
var user = User.get({userId:123}, function() {
--
cgit v1.2.3