diff --git a/guides/source/active_record_querying.md b/guides/source/active_record_querying.md index bef903b7514d511458cece6704cfdf5eda6c6271..2820b641f1f28cf74f58202cb44a564d5ba1b580 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")