fix typo caught by duduribeiro

This commit is contained in:
Benjamin Fleischer 2015-12-15 21:29:39 -06:00
parent ce17a1b305
commit 51af5a4b76

View File

@ -63,9 +63,9 @@ when the resource names are included in the `include` option.
Including nested associated resources is also supported. Including nested associated resources is also supported.
```ruby ```ruby
render @posts, include: ['author', 'comments', 'comments.author'] render json: @posts, include: ['author', 'comments', 'comments.author']
# or # or
render @posts, include: 'author,comments,comments.author' render json: @posts, include: 'author,comments,comments.author'
``` ```
In addition, two types of wildcards may be used: In addition, two types of wildcards may be used:
@ -76,7 +76,7 @@ In addition, two types of wildcards may be used:
These can be combined with other paths. These can be combined with other paths.
```ruby ```ruby
render @posts, include: '**' # or '*' for a single layer render json: @posts, include: '**' # or '*' for a single layer
``` ```
The format of the `include` option can be either: The format of the `include` option can be either:
@ -94,7 +94,7 @@ The following would render posts and include:
It could be combined, like above, with other paths in any combination desired. It could be combined, like above, with other paths in any combination desired.
```ruby ```ruby
render @posts, include: 'author.comments.**' render json: @posts, include: 'author.comments.**'
``` ```
##### Security Considerations ##### Security Considerations
@ -102,7 +102,7 @@ It could be combined, like above, with other paths in any combination desired.
Since the included options may come from the query params (i.e. user-controller): Since the included options may come from the query params (i.e. user-controller):
```ruby ```ruby
render @posts, include: params[:include] render json: @posts, include: params[:include]
``` ```
The user could pass in `include=**`. The user could pass in `include=**`.