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 97
      def corrections
        if @error.reflection && @error.owner_class
          maybe_these = @error.owner_class.reflections.keys
          maybe_these -= [@error.reflection.name.to_s] # remove failing reflection

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