diff options
author | प्रथमेश Sonpatki <csonpatki@gmail.com> | 2016-12-29 18:27:48 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-12-29 18:27:48 +0530 |
commit | 415e17d0b54681545d36a0f43d4cd8761de77bee (patch) | |
tree | 78d1a8a98c5d7cc42989c8e2096be1e24522d5b1 /actionpack/lib | |
parent | af885f108252faa1082784ce1a2eadaf1fe70e55 (diff) | |
download | rails-415e17d0b54681545d36a0f43d4cd8761de77bee.tar.gz rails-415e17d0b54681545d36a0f43d4cd8761de77bee.tar.bz2 rails-415e17d0b54681545d36a0f43d4cd8761de77bee.zip |
Use proper output format [ci skip] (#27498)
Diffstat (limited to 'actionpack/lib')
-rw-r--r-- | actionpack/lib/action_dispatch/http/request.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/actionpack/lib/action_dispatch/http/request.rb b/actionpack/lib/action_dispatch/http/request.rb index 943adc1d05..19fa42ce12 100644 --- a/actionpack/lib/action_dispatch/http/request.rb +++ b/actionpack/lib/action_dispatch/http/request.rb @@ -87,7 +87,7 @@ module ActionDispatch # Returns true if the request has a header matching the given key parameter. # - # request.key? :ip_spoofing_check #=> true + # request.key? :ip_spoofing_check # => true def key?(key) has_header? key end |