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

Use +/<tt> instead of ` in the rdoc [ci skip]

This commit is contained in:
Ryuta Kamizono 2021-02-12 12:56:44 +09:00
parent 9984c3f8fa
commit 94554514fe

View file

@ -404,9 +404,9 @@ module ActiveRecord
# end # end
# # => SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 1 ORDER BY "comments"."id" ASC LIMIT 1 # # => SELECT "comments".* FROM "comments" WHERE "comments"."post_id" = 1 ORDER BY "comments"."id" ASC LIMIT 1
# #
# If `all_queries: true` is passed, scoping will apply to all queries # If <tt>all_queries: true</tt> is passed, scoping will apply to all queries
# for the relation including `update` and `delete` on instances. # for the relation including +update+ and +delete+ on instances.
# Once `all_queries` is set to true it cannot be set to false in a # Once +all_queries+ is set to true it cannot be set to false in a
# nested block. # nested block.
# #
# Please check unscoped if you want to remove all previous scopes (including # Please check unscoped if you want to remove all previous scopes (including