File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
activerecord/lib/active_record Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -293,7 +293,7 @@ def empty?
293
293
# Returns true if there are no records.
294
294
#
295
295
# 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> ).
297
297
#
298
298
# posts.none?(Comment) # => true or false
299
299
def none? ( *args )
@@ -306,7 +306,7 @@ def none?(*args)
306
306
# Returns true if there are any records.
307
307
#
308
308
# 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> ).
310
310
#
311
311
# posts.any?(Post) # => true or false
312
312
def any? ( *args )
@@ -319,7 +319,7 @@ def any?(*args)
319
319
# Returns true if there is exactly one record.
320
320
#
321
321
# 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> ).
323
323
#
324
324
# posts.one?(Post) # => true or false
325
325
def one? ( *args )
You can’t perform that action at this time.
0 commit comments