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

cut down spaces [ci skip]

This commit is contained in:
Vijay Dev 2012-05-30 23:08:00 +05:30
parent 3b6d66a0c8
commit 9ed62ade5f

View file

@ -265,7 +265,7 @@ h5. take
<ruby>
Client.take(2)
# => [#<Client id: 1, first_name: "Lifo">,
# => [#<Client id: 1, first_name: "Lifo">,
#<Client id: 2, first_name: "Raf">]
</ruby>
@ -281,7 +281,7 @@ h5. first
<ruby>
Client.first(2)
# => [#<Client id: 1, first_name: "Lifo">,
# => [#<Client id: 1, first_name: "Lifo">,
#<Client id: 2, first_name: "Raf">]
</ruby>
@ -297,7 +297,7 @@ h5. last
<ruby>
Client.last(2)
# => [#<Client id: 10, first_name: "Ryan">,
# => [#<Client id: 10, first_name: "Ryan">,
#<Client id: 9, first_name: "John">]
</ruby>