Skip to content

Commit bf6c20e

Browse files
Replace backticks with RDoc markup [ci-skip]
1 parent 18b8f37 commit bf6c20e

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

activerecord/lib/active_record/relation.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -293,7 +293,7 @@ def empty?
293293
# Returns true if there are no records.
294294
#
295295
# When a pattern argument is given, this method checks whether elements in
296-
# the Enumerable match the pattern via the case-equality operator (`===`).
296+
# the Enumerable match the pattern via the case-equality operator (<tt>===</tt>).
297297
#
298298
# posts.none?(Comment) # => true or false
299299
def none?(*args)
@@ -306,7 +306,7 @@ def none?(*args)
306306
# Returns true if there are any records.
307307
#
308308
# When a pattern argument is given, this method checks whether elements in
309-
# the Enumerable match the pattern via the case-equality operator (`===`).
309+
# the Enumerable match the pattern via the case-equality operator (<tt>===</tt>).
310310
#
311311
# posts.any?(Post) # => true or false
312312
def any?(*args)
@@ -319,7 +319,7 @@ def any?(*args)
319319
# Returns true if there is exactly one record.
320320
#
321321
# When a pattern argument is given, this method checks whether elements in
322-
# the Enumerable match the pattern via the case-equality operator (`===`).
322+
# the Enumerable match the pattern via the case-equality operator (<tt>===</tt>).
323323
#
324324
# posts.one?(Post) # => true or false
325325
def one?(*args)

0 commit comments

Comments
 (0)