method

corrections

Method deprecated or moved

This method is deprecated or moved on the latest stable version. The last existing version (v6.1.7.7) is shown here.

corrections()
public

No documentation available.

# File activerecord/lib/active_record/associations.rb, line 60
      def corrections
        if @error.reflection && @error.associated_class
          maybe_these = @error.associated_class.reflections.keys

          maybe_these.sort_by { |n|
            DidYouMean::Jaro.distance(@error.reflection.options[:inverse_of].to_s, n)
          }.reverse.first(4)
        else
          []
        end
      end