diff options
author | Ryuta Kamizono <kamipo@gmail.com> | 2017-06-21 11:52:02 +0900 |
---|---|---|
committer | Ryuta Kamizono <kamipo@gmail.com> | 2017-06-21 11:52:02 +0900 |
commit | ab0e4558816b1a69b4e96446ffe2812e21053b42 (patch) | |
tree | bc54d181abd6c833850b811740258140f9663853 /activemodel/lib | |
parent | 0787727cd65d820df78c9cd71ac9f145c9834762 (diff) | |
download | rails-ab0e4558816b1a69b4e96446ffe2812e21053b42.tar.gz rails-ab0e4558816b1a69b4e96446ffe2812e21053b42.tar.bz2 rails-ab0e4558816b1a69b4e96446ffe2812e21053b42.zip |
Fix call-seq typo s/==/<=>/ [ci skip]
Fixes #29512.
Diffstat (limited to 'activemodel/lib')
-rw-r--r-- | activemodel/lib/active_model/naming.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/activemodel/lib/active_model/naming.rb b/activemodel/lib/active_model/naming.rb index 9853cf38fe..9ac56526a2 100644 --- a/activemodel/lib/active_model/naming.rb +++ b/activemodel/lib/active_model/naming.rb @@ -47,7 +47,7 @@ module ActiveModel # :method: <=> # # :call-seq: - # ==(other) + # <=>(other) # # Equivalent to <tt>String#<=></tt>. # |