Skip to content

Commit 995bc7e

Browse files
author
João Paulo
authored
Fix typo in example syntax (porsager#139)
1 parent 13bf071 commit 995bc7e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -527,12 +527,12 @@ const [custom] = sql`
527527
rect
528528
) values (
529529
'wat',
530-
${ sql.types.rect({ x: 13, y: 37: width: 42, height: 80 }) }
530+
${ sql.types.rect({ x: 13, y: 37, width: 42, height: 80 }) }
531531
)
532532
returning *
533533
`
534534

535-
// custom = { name: 'wat', rect: { x: 13, y: 37: width: 42, height: 80 } }
535+
// custom = { name: 'wat', rect: { x: 13, y: 37, width: 42, height: 80 } }
536536

537537
```
538538

0 commit comments

Comments
 (0)