From df6531f45f493c4bbc0e4dec6025f48b704c4e4e Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Thu, 6 Jul 2023 13:09:14 +0200 Subject: [PATCH] typo fixes --- autotest/ogr/ogr_geojson.py | 2 +- swig/python/modify_cpp_files.cmake | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/autotest/ogr/ogr_geojson.py b/autotest/ogr/ogr_geojson.py index c88a773f891b..5fdfefa4a0ed 100755 --- a/autotest/ogr/ogr_geojson.py +++ b/autotest/ogr/ogr_geojson.py @@ -4346,7 +4346,7 @@ def test_ogr_geojson_field_types(): ############################################################################### -# Test openening with non C locale +# Test opening with non C locale def test_ogr_geojson_open_with_non_C_locale(): diff --git a/swig/python/modify_cpp_files.cmake b/swig/python/modify_cpp_files.cmake index 73fefbcc5a97..472b62cc5513 100644 --- a/swig/python/modify_cpp_files.cmake +++ b/swig/python/modify_cpp_files.cmake @@ -63,9 +63,9 @@ endif() # The following hack just makes SWIG_Python_DestroyModule() a no-op, which # will leak a bit of memory, but anyway SWIG currently can only free one single # SWIG module, so we had already memleaks -# To be revisted if above mentionned SWIG issues are resolved +# To be revisted if above mentioned SWIG issues are resolved string(REPLACE "if (--interpreter_counter != 0) // another sub-interpreter may still be using the swig_module's types" - "/* Even Rouault / GDAL hack for SWIG >= 4.1 related to objects not beeing freed. See swig/python/modify_cpp_files.cmake for more details */\nif( 1 )" + "/* Even Rouault / GDAL hack for SWIG >= 4.1 related to objects not being freed. See swig/python/modify_cpp_files.cmake for more details */\nif( 1 )" _CONTENTS "${_CONTENTS}") file(WRITE ${FILE} "${_CONTENTS}")