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