diff options
| author | Cedric Soulas | 2013-02-10 20:40:23 +0100 | 
|---|---|---|
| committer | James deBoer | 2013-02-14 12:14:13 -0800 | 
| commit | fb132732f1791632ca1a93b9bbace83563047b83 (patch) | |
| tree | f00a331798446024aecd9dab1b996b6d3c377eef /src/ngResource | |
| parent | 336b157497b971b79db1ee21af39fdc4cc936e39 (diff) | |
| download | angular.js-fb132732f1791632ca1a93b9bbace83563047b83.tar.bz2 | |
docs($resource): fix missing punctuation
Diffstat (limited to 'src/ngResource')
| -rw-r--r-- | src/ngResource/resource.js | 6 | 
1 files changed, 3 insertions, 3 deletions
diff --git a/src/ngResource/resource.js b/src/ngResource/resource.js index 36b0eff7..876035c4 100644 --- a/src/ngResource/resource.js +++ b/src/ngResource/resource.js @@ -63,9 +63,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:   *   <pre>          var User = $resource('/user/:userId', {userId:'@id'});          var user = User.get({userId:123}, function() {  | 
