From 955d4cfe0f3aa78c687d7e0b1aa3bc198001bb13 Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Mon, 2 Sep 2013 23:27:55 -0700 Subject: [PATCH] Grammar fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ca227cf0..51fd32a9 100644 --- a/README.md +++ b/README.md @@ -101,7 +101,7 @@ let updates = stmt.update([&1i32 as &ToSql, & &"biz" as &ToSql]); println!("{} rows were updated", updates); ``` `query` returns a result iterator. Fields of each row in the result can be -accessed either by its index or their column name: +accessed either by their indicies or their column names: ```rust let stmt = conn.prepare("SELECT bar, baz FROM foo"); for row in stmt.query([]) {