1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Fix markup for the rdoc [ci skip]

This commit is contained in:
Ryuta Kamizono 2021-05-02 22:07:38 +09:00
parent 35bf079aed
commit ab13f9549d

View file

@ -711,7 +711,7 @@ module ActiveRecord
# User.active.invert_where # User.active.invert_where
# # WHERE NOT (`accepted` = 1 AND `locked` = 0) # # WHERE NOT (`accepted` = 1 AND `locked` = 0)
# #
# Be careful because this inverts all conditions before `invert_where` call. # Be careful because this inverts all conditions before +invert_where+ call.
# #
# class User # class User
# scope :active, -> { where(accepted: true, locked: false) } # scope :active, -> { where(accepted: true, locked: false) }