Skip to content

Commit 61d6eb1

Browse files
Merge pull request rails#44740 from gabrieltaylor/nullable-spelling-correction
Correct spelling in docs nullbale -> nullable [ci-skip]
2 parents 18ecdb1 + b041815 commit 61d6eb1

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)