diff options
author | Arthur Nogueira Neves <github@arthurnn.com> | 2015-06-16 23:04:51 +0200 |
---|---|---|
committer | Arthur Nogueira Neves <github@arthurnn.com> | 2015-06-16 23:04:51 +0200 |
commit | 62209d0cec26985a2c93d3c3f10b572ac1c0fb36 (patch) | |
tree | ad9e1afc51c082a97d0cd1ccd1224fe140de4c5f /actionpack | |
parent | 9b635292dbd19e26c89136cfd7d2b03a294afd01 (diff) | |
parent | 336c1963512e29fda05889019b06d151a8368952 (diff) | |
download | rails-62209d0cec26985a2c93d3c3f10b572ac1c0fb36.tar.gz rails-62209d0cec26985a2c93d3c3f10b572ac1c0fb36.tar.bz2 rails-62209d0cec26985a2c93d3c3f10b572ac1c0fb36.zip |
Merge pull request #20588 from vngrs/minor_comment_fix
Fix the comment about attr_reader of headers [ci skip]
Diffstat (limited to 'actionpack')
-rw-r--r-- | actionpack/lib/action_dispatch/http/response.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/http/response.rb b/actionpack/lib/action_dispatch/http/response.rb index aae011fd6a..c5939adb9f 100644 --- a/actionpack/lib/action_dispatch/http/response.rb +++ b/actionpack/lib/action_dispatch/http/response.rb @@ -40,7 +40,7 @@ module ActionDispatch # :nodoc: attr_writer :sending_file - # Get and set headers for this response. + # Get headers for this response. attr_reader :header alias_method :headers, :header |