From 6c2d92f328186df96e475f8c52c405c6cc055314 Mon Sep 17 00:00:00 2001 From: celsowm Date: Mon, 26 Jun 2023 21:25:22 -0300 Subject: [PATCH] Update query-builder.rst fix text --- en/orm/query-builder.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/en/orm/query-builder.rst b/en/orm/query-builder.rst index afb28aa9e2..28e3685229 100644 --- a/en/orm/query-builder.rst +++ b/en/orm/query-builder.rst @@ -1180,8 +1180,8 @@ expression objects to add snippets of SQL to your queries:: Expression Conjuction ----------------------- -It is possible to Changes for changing the conjunction used to join conditions in -a query expression using the method ``setConjunction``:: +It is possible to change the conjunction used to join conditions in a query +expression using the method ``setConjunction``:: $query = $articles->find(); $expr = $query->newExpr(['1','1'])->setConjunction('+');