From b92ea4793ce4dcb73cf762aae634ab72f65ec50f Mon Sep 17 00:00:00 2001 From: Simon Willison Date: Fri, 3 Nov 2023 17:25:02 -0700 Subject: [PATCH] Fixed spelling of wrappping --- sqlite_utils/db.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sqlite_utils/db.py b/sqlite_utils/db.py index f4d92f5..0902d4d 100644 --- a/sqlite_utils/db.py +++ b/sqlite_utils/db.py @@ -538,7 +538,7 @@ class Database: def quote(self, value: str) -> str: """ - Apply SQLite string quoting to a value, including wrappping it in single quotes. + Apply SQLite string quoting to a value, including wrapping it in single quotes. :param value: String to quote """