From 8715f0f771105552f06ecef8112fd82f27be9dcd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=2EYasoob=20Ullah=20Khalid=20=E2=98=BA?= Date: Wed, 8 May 2024 19:56:28 -0700 Subject: [PATCH] Fix typo in query.ex (#4412) --- lib/ecto/query.ex | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/ecto/query.ex b/lib/ecto/query.ex index 08f4a4fa7c..1c4362e337 100644 --- a/lib/ecto/query.ex +++ b/lib/ecto/query.ex @@ -353,7 +353,7 @@ defmodule Ecto.Query do or `join` is used. The query prefix is used only if none of the above are declared. - Let's see some examples. To see the query prefix globally, the simplest + Let's see some examples. To set the query prefix globally, the simplest mechanism is to pass an option to the repository operation: results = Repo.all(query, prefix: "accounts")