Skip to content

Commit fd2492d

Browse files
committed
Remove example bind/3 call from README
1 parent b002520 commit fd2492d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ The `Exqlite.Sqlite3` module usage is fairly straight forward.
145145
146146
# Prepare a statement
147147
{:ok, statement} = Exqlite.Sqlite3.prepare(conn, "insert into test (stuff) values (?1)")
148-
:ok = Exqlite.Sqlite3.bind(conn, statement, ["Hello world"])
148+
:ok = Exqlite.Sqlite3.bind(statement, ["Hello world"])
149149
150150
# Step is used to run statements
151151
:done = Exqlite.Sqlite3.step(conn, statement)

0 commit comments

Comments
 (0)