From 0d066be58e1ab9b086165ed9acde0a59ed9a02b5 Mon Sep 17 00:00:00 2001 From: Alex Anderson <191496+alxndrsn@users.noreply.github.com> Date: Mon, 13 May 2024 18:49:41 +0300 Subject: [PATCH] README: fix manyFirst() example (#600) Co-authored-by: alxndrsn --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index e29d9625..bb28d44e 100644 --- a/README.md +++ b/README.md @@ -2218,7 +2218,7 @@ Returns value of the first column of every row in the result set. Example: ```ts -const fooValues = await connection.many(sql.typeAlias('foo')`SELECT foo`); +const fooValues = await connection.manyFirst(sql.typeAlias('foo')`SELECT foo`); ``` ### maybeOne