1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Small edits to actionpack/CHANGELOG.md

[ci skip]

- change a period to a comma
- add backticks for class + method
This commit is contained in:
Jon Moss 2016-12-27 08:43:38 -05:00
parent d99c772da0
commit c01322376e

View file

@ -1,6 +1,6 @@
* Use accept header in integration tests with `as: :json` * Use accept header in integration tests with `as: :json`
Instead of appending the `format` to the request path. Rails will figure Instead of appending the `format` to the request path, Rails will figure
out the format from the header instead. out the format from the header instead.
This allows devs to use `:as` on routes that don't have a format. This allows devs to use `:as` on routes that don't have a format.
@ -9,7 +9,7 @@
*Kasper Timm Hansen* *Kasper Timm Hansen*
* Reset a new session directly after its creation in ActionDispatch::IntegrationTest#open_session. * Reset a new session directly after its creation in `ActionDispatch::IntegrationTest#open_session`.
Fixes #22742. Fixes #22742.