diff options
author | yui-knk <spiketeika@gmail.com> | 2015-04-01 19:59:54 +0900 |
---|---|---|
committer | yui-knk <spiketeika@gmail.com> | 2015-04-01 19:59:54 +0900 |
commit | 66bf962a7a9f5304c2437f42a9af81ee46ef9dbb (patch) | |
tree | 754b2d635029697e933db1004d78e0e593006ef3 | |
parent | afbd6559f98b2166ba4c1f3dec52a33f10c2a827 (diff) | |
download | rails-66bf962a7a9f5304c2437f42a9af81ee46ef9dbb.tar.gz rails-66bf962a7a9f5304c2437f42a9af81ee46ef9dbb.tar.bz2 rails-66bf962a7a9f5304c2437f42a9af81ee46ef9dbb.zip |
[ci skip] Add `:`
-rw-r--r-- | guides/source/active_record_querying.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md index bef903b751..2820b641f1 100644 --- a/guides/source/active_record_querying.md +++ b/guides/source/active_record_querying.md @@ -529,7 +529,7 @@ Client.order("orders_count ASC, created_at DESC") Client.order("orders_count ASC", "created_at DESC") ``` -If you want to call `order` multiple times e.g. in different context, new order will append previous one +If you want to call `order` multiple times e.g. in different context, new order will append previous one: ```ruby Client.order("orders_count ASC").order("created_at DESC") |