Skip to content

Commit b041815

Browse files
committed
Correct spelling nullbale -> nullable
1 parent 18ecdb1 commit b041815

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

activerecord/lib/active_record/relation/query_methods.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ def initialize(scope)
4343
#
4444
# If there is a non-nil condition on a nullable column in the hash condition, the records that have
4545
# nil values on the nullable column won't be returned.
46-
# User.create!(nullbale_country: nil)
46+
# User.create!(nullable_country: nil)
4747
# User.where.not(nullable_country: "UK")
4848
# # SELECT * FROM users WHERE NOT (nullable_country = 'UK')
4949
# # => []

0 commit comments

Comments
 (0)