diff --git a/manual/codes/DQL (Doctrine Query Language) - DELETE queries.php b/manual/codes/DQL (Doctrine Query Language) - DELETE queries.php index 6f2c317a0..a2a2398f0 100644 --- a/manual/codes/DQL (Doctrine Query Language) - DELETE queries.php +++ b/manual/codes/DQL (Doctrine Query Language) - DELETE queries.php @@ -8,7 +8,7 @@ $rows = $this->conn->query($q, array(3)); $q = new Doctrine_Query(); $rows = $q->delete('Account') - ->from('Account a') + ->from('Account a') ->where('a.id > ?', 3) ->execute();