From 439c6f729653a63328ec05a9467ef0ff2a07f127 Mon Sep 17 00:00:00 2001 From: Alexander Krotov Date: Sat, 15 Feb 2020 02:40:33 +0300 Subject: [PATCH] Fix a typo --- src/sql.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sql.rs b/src/sql.rs index 181be75df..9a3ab31a8 100644 --- a/src/sql.rs +++ b/src/sql.rs @@ -122,7 +122,7 @@ impl Sql { let conn = pool.get()?; // Only one process can make changes to the database at one time. - // busy_timeout defines, that if a seconds process wants write access, + // busy_timeout defines, that if a second process wants write access, // this second process will wait some milliseconds // and try over until it gets write access or the given timeout is elapsed. // If the second process does not get write access within the given timeout,