Skip to content

Commit f576e87

Browse files
committed
More README updates
1 parent 216f15d commit f576e87

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -131,7 +131,7 @@ In addition, `PostgresConnection` has a utility `execute` method which is useful
131131
if a statement is only going to be executed once:
132132
```rust
133133
let updates = try!(conn.execute("UPDATE foo SET bar = $1 WHERE baz = $2",
134-
[&1i32 as &ToSql, &(&"biz") as &ToSql]));
134+
[&1i32 as &ToSql, &"biz" as &ToSql]));
135135
println!("{} rows were updated", updates);
136136
```
137137

0 commit comments

Comments
 (0)