instance method
corrections
Ruby on Rails 6.1.7.10
Since v6.1.7.10 Last seen in v6.1.7.10Signature
corrections()
No documentation comment.
Source
# File actionpack/lib/abstract_controller/base.rb, line 24
def corrections
if @error.action
maybe_these = @error.controller.class.action_methods
maybe_these.sort_by { |n|
DidYouMean::Jaro.distance(@error.action.to_s, n)
}.reverse.first(4)
else
[]
end
end
Defined in actionpack/lib/abstract_controller/base.rb line 24
· View on GitHub
· Improve this page
· Find usages on GitHub