diff --git a/INSTALL.md b/INSTALL.md index 347a3112c8..974260e74e 100644 --- a/INSTALL.md +++ b/INSTALL.md @@ -51,7 +51,7 @@ DejaVu Sans is used as an optional fallback font for systems without Noto Sans. Hanazono is used a fallback for seldom used CJK characters that are not covered by Noto. -Unifont is used as a last resort fallback, with it's excellent coverage, common presence on machines, and ugly look. For compatibility reasons, we support two Linux-distributions-specific versions of Unifont, therefor it's expected that you *always* get a warning about a missing Unifont version. +Unifont is used as a last resort fallback, with it's excellent coverage, common presence on machines, and ugly look. For compatibility reasons, we support two Linux-distributions-specific versions of Unifont, therefore it's expected that you *always* get a warning about a missing Unifont version. If you do not install all the fonts, the rendering itself will not break, but missing glyphs will be ugly. diff --git a/README.md b/README.md index 3829e13bef..dfc993a577 100644 --- a/README.md +++ b/README.md @@ -37,7 +37,7 @@ cartographic project you can expect the following: shapefiles and fonts but will not contain changes that require software or database upgrades. * MAJOR: Any change the requires reloading a database, or upgrading software - dependecies will trigger a major version change. + dependencies will trigger a major version change. # Roadmap diff --git a/docker-compose.yml b/docker-compose.yml index 60a2d09fea..72cc7903b5 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -19,8 +19,6 @@ services: build: context: . dockerfile: Dockerfile.db - ports: - - "127.0.0.1:5432:5432" environment: - POSTGRES_HOST_AUTH_METHOD=trust - PG_WORK_MEM diff --git a/openstreetmap-carto.lua b/openstreetmap-carto.lua index 8dbca62a64..8fc2c85212 100644 --- a/openstreetmap-carto.lua +++ b/openstreetmap-carto.lua @@ -121,7 +121,7 @@ local delete_tags = { 'dcgis:gis_id', -- Building Identification Number (New York, US) 'nycdoitt:bin', - -- Chicago Building Inport (US) + -- Chicago Building Import (US) 'chicago:building_id', -- Louisville, Kentucky/Building Outlines Import (US) 'lojic:bgnum', diff --git a/openstreetmap-carto.style b/openstreetmap-carto.style index 77134cb705..0a30add22d 100644 --- a/openstreetmap-carto.style +++ b/openstreetmap-carto.style @@ -1,5 +1,5 @@ # This is the osm2pgsql .style file for openstreetmap-carto. -# It is inteded to be used with openstreetmap-carto.lua and osm2pgsql Lua +# It is intended to be used with openstreetmap-carto.lua and osm2pgsql Lua # transforms. Full usage details are in INSTALL.md # Among things, this means that the linear vs polygon distinction in this file # doesn't matter, because that is set in the Lua and this file is only used for diff --git a/scripts/get-external-data.py b/scripts/get-external-data.py index f0cdb8caa5..e1f1e058e1 100755 --- a/scripts/get-external-data.py +++ b/scripts/get-external-data.py @@ -49,7 +49,7 @@ def __init__(self, name, conn, temp_schema, schema, metadata_table): self._dst_schema = schema self._metadata_table = metadata_table - # Clean up the temporary schema in preperation for loading + # Clean up the temporary schema in preparation for loading def clean_temp(self): with self._conn.cursor() as cur: cur.execute('''DROP TABLE IF EXISTS "{temp_schema}"."{name}"''' diff --git a/scripts/indexes.py b/scripts/indexes.py index ed27b01c58..02e721f01f 100755 --- a/scripts/indexes.py +++ b/scripts/indexes.py @@ -49,7 +49,7 @@ def reindex_cb(table, name, function, where): if not args.concurrent: print('REINDEX planet_osm_{table}_{name};'.format(table=table, name=name)) else: - # Rebuilding indexes concurently requires making a new index, dropping the old one, and renaming. + # Rebuilding indexes concurrently requires making a new index, dropping the old one, and renaming. print('ALTER INDEX planet_osm_{table}_{name} RENAME TO planet_osm_{table}_{name}_old;'.format(table=table, name=name)) cb(table, name, function, where) print('DROP INDEX planet_osm_{table}_{name}_old;\n'.format(table=table, name=name))