From bf6c20edb7df58dbfb4a5ba390cdb3b7971c6830 Mon Sep 17 00:00:00 2001 From: Jonathan Hefner Date: Tue, 19 Dec 2023 13:13:55 -0600 Subject: [PATCH] Replace backticks with RDoc markup [ci-skip] --- activerecord/lib/active_record/relation.rb | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/activerecord/lib/active_record/relation.rb b/activerecord/lib/active_record/relation.rb index 3b1c208cf20..187f37bddef 100644 --- a/activerecord/lib/active_record/relation.rb +++ b/activerecord/lib/active_record/relation.rb @@ -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 (===). # # 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 (===). # # 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 (===). # # posts.one?(Post) # => true or false def one?(*args)