diff options
author | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-30 23:08:00 +0530 |
---|---|---|
committer | Vijay Dev <vijaydev.cse@gmail.com> | 2012-05-30 23:11:09 +0530 |
commit | 9ed62ade5f2972cfc978cf2744cdd81215f8ff8f (patch) | |
tree | ba8c5cd67c1b1cedd54b648b4a9599fdfa3110f7 /guides/source | |
parent | 3b6d66a0c8cb631b8fadf7472bc068c9b9bf9f65 (diff) | |
download | rails-9ed62ade5f2972cfc978cf2744cdd81215f8ff8f.tar.gz rails-9ed62ade5f2972cfc978cf2744cdd81215f8ff8f.tar.bz2 rails-9ed62ade5f2972cfc978cf2744cdd81215f8ff8f.zip |
cut down spaces [ci skip]
Diffstat (limited to 'guides/source')
-rw-r--r-- | guides/source/active_record_querying.textile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/guides/source/active_record_querying.textile b/guides/source/active_record_querying.textile index eceeb814fd..4b14671efc 100644 --- a/guides/source/active_record_querying.textile +++ b/guides/source/active_record_querying.textile @@ -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> |