🔐 Sid Gifari File Manager Pro
v8.0.5 | 2026-06-14 21:45:04 | PHP 8.1.34
📂
/ (Root)
/
opt
/
alt
/
ruby27
/
share
/
ruby
/
did_you_mean
/
core_ext
📍 /opt/alt/ruby27/share/ruby/did_you_mean/core_ext
🔄 Refresh
✏️
Editing: name_error.rb
Read Only
module DidYouMean module Correctable def original_message method(:to_s).super_method.call end def to_s msg = super.dup suggestion = DidYouMean.formatter.message_for(corrections) msg << suggestion if !msg.end_with?(suggestion) msg rescue super end def corrections @corrections ||= spell_checker.corrections end def spell_checker SPELL_CHECKERS[self.class.to_s].new(self) end end end
💾 Save Changes
❌ Cancel