From 2dab6d8364069d515066a6a9ab5b6fd7f3fa39eb Mon Sep 17 00:00:00 2001 From: Mahmoud Al-Qudsi Date: Wed, 2 Dec 2020 17:06:46 -0600 Subject: [PATCH] [docs] Fix over-long monospacing of `SQLITE_BUSY` --- src/busy.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/busy.rs b/src/busy.rs index fd46c74..32c2ab1 100644 --- a/src/busy.rs +++ b/src/busy.rs @@ -33,8 +33,8 @@ impl Connection { /// Register a callback to handle `SQLITE_BUSY` errors. /// - /// If the busy callback is `None`, then `SQLITE_BUSY is returned - /// immediately upon encountering the lock.` The argument to the busy + /// If the busy callback is `None`, then `SQLITE_BUSY` is returned + /// immediately upon encountering the lock. The argument to the busy /// handler callback is the number of times that the /// busy handler has been invoked previously for the /// same locking event. If the busy callback returns `false`, then no