Change all "can not"s to the correct "cannot"

It's been 6 years since [the original](https://github.com/rails/rails/pull/13584), so we're overdue for a sequel.

The correct word is "cannot", one word, not "can not", two words.
This commit is contained in:
T.J. Schuck 2020-02-04 16:46:55 -05:00
parent a7104fa44c
commit 6af50a9067
3 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@ module ActiveRecord
end
else
# Custom preload scope is used and
# the association can not be marked as loaded
# the association cannot be marked as loaded
# Loading into a Hash instead
records_by_owner
end

View File

@ -64,7 +64,7 @@ module ActiveSupport
def transliterate(string, replacement = "?", locale: nil)
string = string.dup if string.frozen?
raise ArgumentError, "Can only transliterate strings. Received #{string.class.name}" unless string.is_a?(String)
raise ArgumentError, "Can not transliterate strings with #{string.encoding} encoding" unless ALLOWED_ENCODINGS_FOR_TRANSLITERATE.include?(string.encoding)
raise ArgumentError, "Cannot transliterate strings with #{string.encoding} encoding" unless ALLOWED_ENCODINGS_FOR_TRANSLITERATE.include?(string.encoding)
input_encoding = string.encoding

View File

@ -88,7 +88,7 @@ class TransliterateTest < ActiveSupport::TestCase
exception = assert_raises ArgumentError do
ActiveSupport::Inflector.transliterate(string)
end
assert_equal "Can not transliterate strings with #{encoding} encoding", exception.message
assert_equal "Cannot transliterate strings with #{encoding} encoding", exception.message
end
end