mirror of
https://github.com/isar/rusqlite.git
synced 2025-11-02 06:48:55 +08:00
Fix rustdoc warnings
This commit is contained in:
@@ -42,7 +42,7 @@ fn main() {
|
||||
&[&me.name, &me.time_created, &me.data]).unwrap();
|
||||
|
||||
let mut stmt = conn.prepare("SELECT id, name, time_created, data FROM person").unwrap();
|
||||
let mut person_iter = stmt.query_map(&[], |row| {
|
||||
let person_iter = stmt.query_map(&[], |row| {
|
||||
Person {
|
||||
id: row.get(0),
|
||||
name: row.get(1),
|
||||
|
||||
Reference in New Issue
Block a user