Fix 'intialize' typo, replace with 'initialize'.
This commit is contained in:
parent
d09b6a4810
commit
388a8a7c4d
2 changed files with 2 additions and 2 deletions
|
@ -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))
|
||||
{
|
||||
|
|
|
@ -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());
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue