File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 63
63
*
64
64
* Calling these methods invoke an {@link ng.$http} with the specified http method,
65
65
* 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:
69
69
* <pre>
70
70
var User = $resource('/user/:userId', {userId:'@id '});
71
71
var user = User.get({userId:123}, function() {
You can’t perform that action at this time.
0 commit comments