From 66bf962a7a9f5304c2437f42a9af81ee46ef9dbb Mon Sep 17 00:00:00 2001 From: yui-knk Date: Wed, 1 Apr 2015 19:59:54 +0900 Subject: [PATCH] [ci skip] Add `:` --- guides/source/active_record_querying.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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") -- GitLab