We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 21feed4 commit ee8b788Copy full SHA for ee8b788
1 file changed
README.md
@@ -112,7 +112,7 @@ Both methods take an array of parameters to bind to the query represented as
112
query (or 0 if not applicable):
113
```rust
114
let stmt = try!(conn.prepare("UPDATE foo SET bar = $1 WHERE baz = $2"));
115
-let updates = try!(stmt.execute([&1i32 as &ToSql, & &"biz" as &ToSql]));
+let updates = try!(stmt.execute([&1i32 as &ToSql, &"biz" as &ToSql]));
116
println!("{} rows were updated", updates);
117
```
118
`query` returns an iterator over the rows returned from the database. The
0 commit comments