Skip to content

Commit 69b7d54

Browse files
authored
Fix mixing quotes in query_many docs (#508)
1 parent 33d483e commit 69b7d54

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/ecto/adapters/sql.ex

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -524,7 +524,7 @@ defmodule Ecto.Adapters.SQL do
524524
525525
For convenience, this function is also available under the repository:
526526
527-
iex> MyRepo.query_many(SELECT $1; SELECT $2;", [40, 2])
527+
iex> MyRepo.query_many("SELECT $1; SELECT $2;", [40, 2])
528528
{:ok, [%{rows: [[40]], num_rows: 1}, %{rows: [[2]], num_rows: 1}]}
529529
530530
"""

0 commit comments

Comments
 (0)