diff --git a/src/map.cpp b/src/map.cpp index ca813e273..9f1b6a5ed 100644 --- a/src/map.cpp +++ b/src/map.cpp @@ -695,7 +695,7 @@ featureset_ptr Map::query_point(unsigned index, double x, double y) const { if (!current_extent_.valid()) { - throw std::runtime_error("query_point: map extent is not intialized, you need to set a valid extent before querying"); + throw std::runtime_error("query_point: map extent is not initialized, you need to set a valid extent before querying"); } if (!current_extent_.intersects(x,y)) { diff --git a/src/marker_cache.cpp b/src/marker_cache.cpp index 6fef8613e..059280c6b 100644 --- a/src/marker_cache.cpp +++ b/src/marker_cache.cpp @@ -267,7 +267,7 @@ std::shared_ptr marker_cache::find(std::string const& uri, } else { - MAPNIK_LOG_ERROR(marker_cache) << "could not intialize reader for: '" << uri << "'"; + MAPNIK_LOG_ERROR(marker_cache) << "could not initialize reader for: '" << uri << "'"; return std::make_shared(mapnik::marker_null()); } }