Skip to content

Commit

Permalink
README: fix manyFirst() example (#600)
Browse files Browse the repository at this point in the history
Co-authored-by: alxndrsn <alxndrsn>
  • Loading branch information
alxndrsn authored May 13, 2024
1 parent a2a0ac2 commit 0d066be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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`);
```
### <code>maybeOne</code>
Expand Down

0 comments on commit 0d066be

Please sign in to comment.