Fix a missing comma

This commit is contained in:
Ivan Ukhov 2017-08-22 17:50:23 +02:00
parent 9d904ddd43
commit c56e975381
2 changed files with 2 additions and 2 deletions

View File

@ -45,7 +45,7 @@ let mut statement = connection
.prepare(
"
SELECT * FROM users WHERE age > ?
"
",
)
.unwrap();

View File

@ -61,7 +61,7 @@
//! .prepare(
//! "
//! SELECT * FROM users WHERE age > ?
//! "
//! ",
//! )
//! .unwrap();
//!