Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit fb13273

Browse files
cedricssjbdeboer
authored andcommitted
docs($resource): fix missing punctuation
1 parent 336b157 commit fb13273

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ngResource/resource.js

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -63,9 +63,9 @@
6363
*
6464
* Calling these methods invoke an {@link ng.$http} with the specified http method,
6565
* destination and parameters. When the data is returned from the server then the object is an
66-
* instance of the resource class `save`, `remove` and `delete` actions are available on it as
67-
* methods with the `$` prefix. This allows you to easily perform CRUD operations (create, read,
68-
* update, delete) on server-side data like this:
66+
* instance of the resource class. The actions `save`, `remove` and `delete` are available on it
67+
* as methods with the `$` prefix. This allows you to easily perform CRUD operations (create,
68+
* read, update, delete) on server-side data like this:
6969
* <pre>
7070
var User = $resource('/user/:userId', {userId:'@id'});
7171
var user = User.get({userId:123}, function() {

0 commit comments

Comments
 (0)