Skip to content

Commit 544f58b

Browse files
authored
Fixed typo in README.md (#651)
* Fixed typo in README.md * Updated sentence
1 parent a3b3031 commit 544f58b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ update users set "name" = $1, "age" = $2 where user_id = $3
235235
```
236236

237237
### Multiple updates in one query
238-
It's possible to create multiple udpates in a single query. It's necessary to use arrays intead of objects to ensure the order of the items so that these correspond with the column names.
238+
To create multiple updates in a single query, it is necessary to use arrays instead of objects to ensure that the order of the items correspond with the column names.
239239
```js
240240
const users = [
241241
[1, 'John', 34],

0 commit comments

Comments
 (0)