Fix example in README.md

This commit is contained in:
gentoo90 2015-04-11 11:06:25 +03:00 committed by John Gallagher
parent 5e04b98840
commit 0b4ea23cc3

View File

@ -22,7 +22,7 @@ struct Person {
}
fn main() {
let conn = SqliteConnection::open(":memory:").unwrap();
let conn = SqliteConnection::open_in_memory().unwrap();
conn.execute("CREATE TABLE person (
id INTEGER PRIMARY KEY,
@ -48,7 +48,7 @@ fn main() {
time_created: row.get(2),
data: row.get(3)
};
println!("Found person {}", person);
println!("Found person {:?}", person);
}
}
```