Merge pull request #2040 from davidlowjw/develop

Minor typo fix
This commit is contained in:
Patrick Niklaus 2016-03-02 16:40:38 +01:00
commit 6c20a4a874

View File

@ -260,7 +260,7 @@ template <class DataFacadeT> class MapMatchingPlugin : public BasePlugin
if (max_locations_map_matching > 0 && if (max_locations_map_matching > 0 &&
static_cast<int>(route_parameters.coordinates.size()) > max_locations_map_matching) static_cast<int>(route_parameters.coordinates.size()) > max_locations_map_matching)
{ {
json_result.values["status_message"] = "Too many coodindates"; json_result.values["status_message"] = "Too many coordinates";
return Status::Error; return Status::Error;
} }