We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b002520 commit fd2492dCopy full SHA for fd2492d
README.md
@@ -145,7 +145,7 @@ The `Exqlite.Sqlite3` module usage is fairly straight forward.
145
146
# Prepare a statement
147
{:ok, statement} = Exqlite.Sqlite3.prepare(conn, "insert into test (stuff) values (?1)")
148
-:ok = Exqlite.Sqlite3.bind(conn, statement, ["Hello world"])
+:ok = Exqlite.Sqlite3.bind(statement, ["Hello world"])
149
150
# Step is used to run statements
151
:done = Exqlite.Sqlite3.step(conn, statement)
0 commit comments