Skip to content

Instantly share code, notes, and snippets.

@springmeyer
Created October 27, 2011 21:22
Show Gist options
  • Save springmeyer/1320918 to your computer and use it in GitHub Desktop.
Save springmeyer/1320918 to your computer and use it in GitHub Desktop.
Index: apps/gdal_rasterize.cpp
===================================================================
--- apps/gdal_rasterize.cpp (revision 23283)
+++ apps/gdal_rasterize.cpp (working copy)
@@ -281,7 +281,7 @@
/* -------------------------------------------------------------------- */
/* If we are in inverse mode, we add one extra ring around the */
/* whole dataset to invert the concept of insideness and then */
-/* merge everything into one geomtry collection. */
+/* merge everything into one geometry collection. */
/* -------------------------------------------------------------------- */
if( bInverse )
{
Index: ogr/ogrsf_frmts/geojson/ogr_geojson.h
===================================================================
--- ogr/ogrsf_frmts/geojson/ogr_geojson.h (revision 23283)
+++ ogr/ogrsf_frmts/geojson/ogr_geojson.h (working copy)
@@ -192,7 +192,7 @@
//
// OGRGeoJSONDriver Interface
//
- // NOTE: New version of Open() based on Andrey's RCF 10.
+ // NOTE: New version of Open() based on Andrey's RFC 10.
OGRDataSource* Open( const char* pszName, int bUpdate,
char** papszOptions );
Index: gcore/gdaldataset.cpp
===================================================================
--- gcore/gdaldataset.cpp (revision 23283)
+++ gcore/gdaldataset.cpp (working copy)
@@ -949,7 +949,7 @@
* @param pszHandleName the handle name desired. The meaningful names
* will be specific to the file format.
*
- * @return the desired handle value, or NULL if not recognised/supported.
+ * @return the desired handle value, or NULL if not recognized/supported.
*/
void *GDALDataset::GetInternalHandle( const char * )
@@ -2260,12 +2260,12 @@
if( oOpenInfo.bStatOK )
CPLError( CE_Failure, CPLE_OpenFailed,
- "`%s' not recognised as a supported file format.\n",
+ "`%s' not recognized as a supported file format.\n",
oOpenInfo.pszFilename );
else
CPLError( CE_Failure, CPLE_OpenFailed,
"`%s' does not exist in the file system,\n"
- "and is not recognised as a supported dataset name.\n",
+ "and is not recognized as a supported dataset name.\n",
oOpenInfo.pszFilename );
return NULL;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment