From a09a6eac759d1db7f855f31085af1fa69fa3aec5 Mon Sep 17 00:00:00 2001 From: Al <7813306+mehov@users.noreply.github.com> Date: Wed, 6 Dec 2023 17:27:53 +0100 Subject: [PATCH] Commit suggestion by @markstory in en/orm/query-builder.rst Co-authored-by: Mark Story --- en/orm/query-builder.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/orm/query-builder.rst b/en/orm/query-builder.rst index 76f5bf0600..4c0726bebf 100644 --- a/en/orm/query-builder.rst +++ b/en/orm/query-builder.rst @@ -1885,7 +1885,7 @@ To build that query with the ORM query builder we would use:: ], ]); -If you need to build a recursive query (`WITH RECURSIVE …`), chain `->recursive()` onto `return $cte`. +If you need to build a recursive query (``WITH RECURSIVE …``), chain ``->recursive()`` onto ``return $cte``. Executing Complex Queries -------------------------