Viewing File: /opt/cpanel/ea-ruby24/root/usr/share/gems/gems/did_you_mean-1.1.0/lib/did_you_mean/formatter.rb

# frozen-string-literal: true

module DidYouMean
  class Formatter
    def initialize(corrections = [])
      @corrections = corrections
    end

    def to_s
      return "" if @corrections.empty?

      output = "\nDid you mean?  ".dup
      output << @corrections.join("\n               ")
    end
  end
end
Back to Directory File Manager