From dc8f3c7cdea30f5e6c2e219714e06e26dd4baf93 Mon Sep 17 00:00:00 2001 From: Chris Amico Date: Thu, 3 Feb 2022 11:41:36 -0500 Subject: [PATCH] Fix my spelling --- sqlite_utils/gis.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sqlite_utils/gis.py b/sqlite_utils/gis.py index 70681f7..d4706a7 100644 --- a/sqlite_utils/gis.py +++ b/sqlite_utils/gis.py @@ -32,11 +32,11 @@ def find_spatialite() -> str: def init_spatialite(db: Database, path: str) -> bool: """ - The ``init_spatialite`` function will load and initalize the Spatialite extension. + The ``init_spatialite`` function will load and initialize the Spatialite extension. The ``path`` argument should be an absolute path to the compiled extension, which can be found using ``find_spatialite``. - Returns true if Spatialite was successfully initalized. + Returns true if Spatialite was successfully initialized. .. code-block:: python