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

Ensure codeblocks are rendered as such for (min|max)imum

Make indentation consistent for all codeblocks in file.

[ci-skip]
This commit is contained in:
Gert Goet 2022-01-07 12:21:03 +01:00
parent 2b05b25809
commit 53ede786fc

View file

@ -223,7 +223,7 @@ module Enumerable
# objects in the original enumerable. # objects in the original enumerable.
# #
# [ Person.find(5), Person.find(3), Person.find(1) ].in_order_of(:id, [ 1, 5, 3 ]) # [ Person.find(5), Person.find(3), Person.find(1) ].in_order_of(:id, [ 1, 5, 3 ])
# => [ Person.find(1), Person.find(5), Person.find(3) ] # # => [ Person.find(1), Person.find(5), Person.find(3) ]
# #
# If the +series+ include keys that have no corresponding element in the Enumerable, these are ignored. # If the +series+ include keys that have no corresponding element in the Enumerable, these are ignored.
# If the Enumerable has additional elements that aren't named in the +series+, these are not included in the result. # If the Enumerable has additional elements that aren't named in the +series+, these are not included in the result.