OXIESEC PANEL
- Current Dir:
/
/
usr
/
lib
/
ruby
/
vendor_ruby
/
did_you_mean
/
formatters
Server IP: 139.59.38.164
Upload:
Create Dir:
Name
Size
Modified
Perms
📁
..
-
02/10/2020 11:55:58 AM
rwxr-xr-x
📄
plain_formatter.rb
215 bytes
03/31/2018 05:00:01 PM
rw-r--r--
📄
verbose_formatter.rb
287 bytes
03/31/2018 05:00:01 PM
rw-r--r--
Editing: verbose_formatter.rb
Close
# frozen-string-literal: true module DidYouMean class VerboseFormatter def message_for(corrections) return "" if corrections.empty? output = "\n\n Did you mean? ".dup output << corrections.join("\n ") output << "\n " end end end