Fix 'intialize' typo, replace with 'initialize'.

This commit is contained in:
Bas Couwenberg 2016-08-05 14:49:45 +02:00
parent d09b6a4810
commit 388a8a7c4d
2 changed files with 2 additions and 2 deletions

View file

@ -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))
{

View file

@ -267,7 +267,7 @@ std::shared_ptr<mapnik::marker const> 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 const>(mapnik::marker_null());
}
}