Minor typo fix

This commit is contained in:
David Low 2016-03-02 15:16:28 +08:00
parent becae46296
commit 79e8d1aac3

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;
} }