Replace backticks with RDoc markup [ci-skip]

This commit is contained in:
Jonathan Hefner 2023-12-19 13:13:55 -06:00
parent 18b8f37192
commit bf6c20edb7
1 changed files with 3 additions and 3 deletions

View File

@ -293,7 +293,7 @@ module ActiveRecord
# Returns true if there are no records.
#
# When a pattern argument is given, this method checks whether elements in
# the Enumerable match the pattern via the case-equality operator (`===`).
# the Enumerable match the pattern via the case-equality operator (<tt>===</tt>).
#
# posts.none?(Comment) # => true or false
def none?(*args)
@ -306,7 +306,7 @@ module ActiveRecord
# Returns true if there are any records.
#
# When a pattern argument is given, this method checks whether elements in
# the Enumerable match the pattern via the case-equality operator (`===`).
# the Enumerable match the pattern via the case-equality operator (<tt>===</tt>).
#
# posts.any?(Post) # => true or false
def any?(*args)
@ -319,7 +319,7 @@ module ActiveRecord
# Returns true if there is exactly one record.
#
# When a pattern argument is given, this method checks whether elements in
# the Enumerable match the pattern via the case-equality operator (`===`).
# the Enumerable match the pattern via the case-equality operator (<tt>===</tt>).
#
# posts.one?(Post) # => true or false
def one?(*args)