Skip to content
This repository was archived by the owner on Apr 12, 2024. It is now read-only.

Commit e47f8d2

Browse files
cedricssjbdeboer
authored andcommitted
docs($resource): fix missing punctuation
1 parent dba6bc7 commit e47f8d2

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/ngResource/resource.js

+3-3
Original file line numberDiff line numberDiff line change
@@ -83,9 +83,9 @@
8383
*
8484
* Calling these methods invoke an {@link ng.$http} with the specified http method,
8585
* destination and parameters. When the data is returned from the server then the object is an
86-
* instance of the resource class `save`, `remove` and `delete` actions are available on it as
87-
* methods with the `$` prefix. This allows you to easily perform CRUD operations (create, read,
88-
* update, delete) on server-side data like this:
86+
* instance of the resource class. The actions `save`, `remove` and `delete` are available on it
87+
* as methods with the `$` prefix. This allows you to easily perform CRUD operations (create,
88+
* read, update, delete) on server-side data like this:
8989
* <pre>
9090
var User = $resource('/user/:userId', {userId:'@id'});
9191
var user = User.get({userId:123}, function() {

0 commit comments

Comments
 (0)