Include varying positional param types in docs

This commit is contained in:
Daan Schutte 2021-11-22 11:08:04 +03:00 committed by Thom Chiovoloni
parent 9776b99c37
commit 40fbc5ca10

View File

@ -515,7 +515,7 @@ impl Connection {
/// ```rust,no_run
/// # use rusqlite::{Connection};
/// fn update_rows(conn: &Connection) {
/// match conn.execute("UPDATE foo SET bar = 'baz' WHERE qux = ?", [1i32]) {
/// match conn.execute("UPDATE foo SET bar = 'baz' WHERE qux = ?1 AND quux = ?2", params![1i32, 1.5f64]) {
/// Ok(updated) => println!("{} rows were updated", updated),
/// Err(err) => println!("update failed: {}", err),
/// }