Skip to content

Commit 37b86e7

Browse files
committed
typo fixes [ci skip]
1 parent 3fc05d4 commit 37b86e7

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

autotest/ogr/ogr_gml.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -4803,7 +4803,7 @@ def test_ogr_gml_force_opening(tmp_vsimem):
48034803
[],
48044804
"Field xxxx not found in layer test_point",
48054805
),
4806-
# Test with type wich is not recognized
4806+
# Test with type which is not recognized
48074807
(
48084808
[
48094809
r'OGR_SCHEMA={"layers": [{"name": "test_point", "fields": [{ "name": "str", "type": "xxxx" }, {"name": "dbl", "type": "String" }]}]}'

ogr/ogrsf_frmts/adbc/ogradbclayer.cpp

+2-2
Original file line numberDiff line numberDiff line change
@@ -339,8 +339,8 @@ void OGRADBCLayer::BuildLayerDefn(bool bInternalUse)
339339
CPLJSONDocument oDoc;
340340
if (!osGeoParquetMD.empty() && oDoc.LoadMemory(osGeoParquetMD))
341341
{
342-
const auto oColums = oDoc.GetRoot().GetObj("columns");
343-
for (const auto &oColumn : oColums.GetChildren())
342+
const auto oColumns = oDoc.GetRoot().GetObj("columns");
343+
for (const auto &oColumn : oColumns.GetChildren())
344344
{
345345
if (oColumn.GetString("encoding") == "WKB")
346346
{

ogr/ogrsf_frmts/gml/ogr_gml.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ class OGRGMLDataSource final : public GDALDataset
228228
return bIsOutputGML32;
229229
}
230230

231-
/** Returns whether a writing error has occured */
231+
/** Returns whether a writing error has occurred */
232232
inline bool HasWriteError() const
233233
{
234234
return m_bWriteError;

0 commit comments

Comments
 (0)