diff options
author | Kasper Timm Hansen <kaspth@gmail.com> | 2016-02-11 22:43:44 +0100 |
---|---|---|
committer | Kasper Timm Hansen <kaspth@gmail.com> | 2016-02-11 22:47:17 +0100 |
commit | 5007df5ea53efaf7d8f14994bea6bc3e0adc67f6 (patch) | |
tree | aedc4b6639f088f5e39bb12fee05b11b965503c6 /actionpack | |
parent | 3b94c38a7f861cb7683dce6fe535c956a20e6359 (diff) | |
download | rails-5007df5ea53efaf7d8f14994bea6bc3e0adc67f6.tar.gz rails-5007df5ea53efaf7d8f14994bea6bc3e0adc67f6.tar.bz2 rails-5007df5ea53efaf7d8f14994bea6bc3e0adc67f6.zip |
[ci skip] Mention `parsed_body` in docs.
Little easier to understand when you know the method that's used.
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/testing/integration.rb | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/actionpack/lib/action_dispatch/testing/integration.rb b/actionpack/lib/action_dispatch/testing/integration.rb index f4534b4173..8a8e22053a 100644 --- a/actionpack/lib/action_dispatch/testing/integration.rb +++ b/actionpack/lib/action_dispatch/testing/integration.rb @@ -729,8 +729,7 @@ module ActionDispatch # response_parser: -> body { body } # # Where `param_encoder` defines how the params should be encoded and - # `response_parser` defines how the response body should be parsed through - # `parsed_body`. + # `response_parser` defines how the response body should be parsed. # # Consult the Rails Testing Guide for more. |