From 5fef7b6db263a02924ea7b471958b2f868080322 Mon Sep 17 00:00:00 2001 From: Even Rouault Date: Tue, 28 Nov 2023 17:06:59 +0100 Subject: [PATCH] typo fixes --- ogr/ogrsf_frmts/generic/ogrlayer_private.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ogr/ogrsf_frmts/generic/ogrlayer_private.h b/ogr/ogrsf_frmts/generic/ogrlayer_private.h index 42bb72bcbb9e..21b3475eb3c1 100644 --- a/ogr/ogrsf_frmts/generic/ogrlayer_private.h +++ b/ogr/ogrsf_frmts/generic/ogrlayer_private.h @@ -40,9 +40,9 @@ struct OGRLayer::Private // to store the mapping between the input Arrow field name and the // output OGR field name, that can be different sometimes (for example // Shapefile truncating at 10 characters) - // This is admitedly not super clean to store that mapping at that level. + // This is admittedly not super clean to store that mapping at that level. // We should probably have CreateFieldFromArrowSchema() and - // WriteArrowBatch() explictly returning and accepting that mapping. + // WriteArrowBatch() explicitly returning and accepting that mapping. std::map m_oMapArrowFieldNameToOGRFieldName{}; }; //! @endcond