summaryrefslogtreecommitdiff
path: root/README.md
diff options
context:
space:
mode:
Diffstat (limited to 'README.md')
-rw-r--r--README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/README.md b/README.md
index af09489..d73aa3d 100644
--- a/README.md
+++ b/README.md
@@ -175,7 +175,7 @@ See the section "Bind parameters and resultset rows" for more information on the
175You can reuse a statement by resetting it like this: 175You can reuse a statement by resetting it like this:
176```zig 176```zig
177const query = 177const query =
178 \\UPDATE foo SET salary = ? WHERE id = ? 178 \\UPDATE employees SET salary = ? WHERE id = ?
179; 179;
180 180
181var stmt = try db.prepare(query); 181var stmt = try db.prepare(query);