Skip to content

Commit 955d4cf

Browse files
committed
Grammar fix
1 parent 729debe commit 955d4cf

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
@@ -101,7 +101,7 @@ let updates = stmt.update([&1i32 as &ToSql, & &"biz" as &ToSql]);
101101
println!("{} rows were updated", updates);
102102
```
103103
`query` returns a result iterator. Fields of each row in the result can be
104-
accessed either by its index or their column name:
104+
accessed either by their indicies or their column names:
105105
```rust
106106
let stmt = conn.prepare("SELECT bar, baz FROM foo");
107107
for row in stmt.query([]) {

0 commit comments

Comments
 (0)