mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
remove description of render :nothing
from guide [ci skip]
`:nothing` option was deprecated in 44781b6e97
This commit is contained in:
parent
43e902a65f
commit
9e70daa941
1 changed files with 1 additions and 1 deletions
|
@ -700,7 +700,7 @@ This would detect that there are no books with the specified ID, populate the `@
|
|||
|
||||
### Using `head` To Build Header-Only Responses
|
||||
|
||||
The `head` method can be used to send responses with only headers to the browser. It provides a more obvious alternative to calling `render :nothing`. The `head` method accepts a number or symbol (see [reference table](#the-status-option)) representing a HTTP status code. The options argument is interpreted as a hash of header names and values. For example, you can return only an error header:
|
||||
The `head` method can be used to send responses with only headers to the browser. The `head` method accepts a number or symbol (see [reference table](#the-status-option)) representing a HTTP status code. The options argument is interpreted as a hash of header names and values. For example, you can return only an error header:
|
||||
|
||||
```ruby
|
||||
head :bad_request
|
||||
|
|
Loading…
Reference in a new issue