Skip to content

Commit

Permalink
typo fixes [ci skip]
Browse files Browse the repository at this point in the history
  • Loading branch information
rouault committed Oct 22, 2023
1 parent 182b844 commit 2037f16
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion apps/ogr2ogr_lib.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3943,7 +3943,7 @@ bool SetupTargetLayer::CanUseWriteArrowBatch(
else if (!bJustCreatedLayer)
{
// If the layer already exist, get its schema, and
// check that it looks to be the same as the souce
// check that it looks to be the same as the source
// one
struct ArrowArrayStream streamDst;
if (poDstLayer->GetArrowStream(&streamDst, nullptr))
Expand Down
2 changes: 1 addition & 1 deletion apps/test_ogrsf.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -4000,7 +4000,7 @@ static int TestLayerGetArrowStream(OGRLayer *poLayer)
}

bool bRet = true;
// We are a bit in non-specified behaviour below by calling get_next()
// We are a bit in non-specified behavior below by calling get_next()
// after end of iteration.
{
struct ArrowArray array;
Expand Down
2 changes: 1 addition & 1 deletion frmts/gtiff/gtiffdataset_read.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -560,7 +560,7 @@ static void CPL_STDCALL ThreadDecompressionFuncErrorHandler(
psJob->nXBlock, psJob->nYBlock);
if (apoBlocks[i] == nullptr)
{
// Temporary disabling of dirty block fushing, otherwise
// Temporary disabling of dirty block flushing, otherwise
// we can be in a deadlock situation, where the
// GTiffDataset::SubmitCompressionJob() method waits for jobs
// to be finished, that can't finish (actually be started)
Expand Down
2 changes: 1 addition & 1 deletion ogr/ogrsf_frmts/generic/ogrlayerarrow.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -5656,7 +5656,7 @@ static inline uint64_t GetUInt64Value(const struct ArrowSchema *schema,
nVal = GetValue<uint64_t>(array, iFeature);
break;
default:
// Shouldn't happend given checks in BuildOGRFieldInfo()
// Shouldn't happen given checks in BuildOGRFieldInfo()
CPLAssert(false);
break;
}
Expand Down
2 changes: 1 addition & 1 deletion ogr/ogrsf_frmts/wfs/ogroapifdriver.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ class OGROAPIFDataset final : public GDALDataset
bool LoadJSONCollections(const CPLString &osResultIn);

/**
* Determines tha page size by making a call to the API endpoint to get the server's
* Determines the page size by making a call to the API endpoint to get the server's
* default and max limits for the collection items specified by itemsUrl
*/
void DeterminePageSizeFromAPI(const std::string &itemsUrl);
Expand Down

0 comments on commit 2037f16

Please sign in to comment.