Skip to content

Commit de56ce5

Browse files
authored
fix: typo in SQL values raw JS function (#35)
1 parent 3daf9e8 commit de56ce5

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

.changeset/cozy-teams-play.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
"rescript-bun": patch
3+
---
4+
5+
Fix typo in SQL `values` raw JS function

src/SQL.res

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ let object: (t, {..}, array<string>) => SQLQuery.t<param> = %raw(`
5151

5252
let values: (t, array<'a>) => SQLQuery.t<param> = %raw(`
5353
function(t, values) {
54-
return t(arr)
54+
return t(values)
5555
}
5656
`)
5757

0 commit comments

Comments
 (0)