From 35c9bb8cb02b8fbf161da81846b7c65c8db6face Mon Sep 17 00:00:00 2001 From: gwenn Date: Fri, 18 Oct 2024 20:10:35 +0200 Subject: [PATCH] Fix doc example --- src/lib.rs | 1 + 1 file changed, 1 insertion(+) diff --git a/src/lib.rs b/src/lib.rs index ebee3a3..c9bd603 100644 --- a/src/lib.rs +++ b/src/lib.rs @@ -1105,6 +1105,7 @@ impl fmt::Debug for Connection { /// So you should break the loop when an error is raised by the `next` method. /// /// ```rust +/// use fallible_iterator::FallibleIterator; /// use rusqlite::{Batch, Connection, Result}; /// /// fn main() -> Result<()> {