From 301f4d034697e894be369c4d98b8b3cefe4326a3 Mon Sep 17 00:00:00 2001 From: Tobias Schultze Date: Thu, 12 Apr 2012 23:22:06 +0300 Subject: [PATCH] fix confusing typo in ordered collections --- en/tutorials/ordered-associations.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/tutorials/ordered-associations.rst b/en/tutorials/ordered-associations.rst index 52b217308..23f438300 100644 --- a/en/tutorials/ordered-associations.rst +++ b/en/tutorials/ordered-associations.rst @@ -64,7 +64,7 @@ However the following: SELECT u, g FROM User u JOIN u.groups g WHERE u.id = 10 ORDER BY g.name ASC -You can't reverse the order with an explicit DQL ORDER BY: +You can reverse the order with an explicit DQL ORDER BY: .. code-block:: sql