🐿️ Type safe SQL in Gleam
78

Configure Feed

Select the types of activity you want to include in your feed.

Fix code snippet in README

authored by

Corentin J. and committed by
Giacomo Cavalieri
(Oct 25, 2025, 6:37 PM +0200) 7e856361 9d28eab6

+2 -2
+2 -2
README.md
··· 85 85 pub fn main() { 86 86 let db = todo as "the pog connection" 87 87 // And it just works as you'd expect: 88 - let assert Ok(pog.Returned(_rows_count, rows)) = sql.find_squirrel("sandy") 89 - let assert [FindSquirrelRow(name: "sandy", owned_acorns: 11_111)] = rows 88 + let assert Ok(pog.Returned(_rows_count, rows)) = sql.find_squirrel(db, "sandy") 89 + let assert [sql.FindSquirrelRow(name: "sandy", owned_acorns: 11_111)] = rows 90 90 } 91 91 ``` 92 92