From dfa762bccccc9169671f9422ff8d19b85c06cae4 Mon Sep 17 00:00:00 2001 From: "Daniel J. Hofmann" Date: Thu, 2 Jun 2016 16:35:21 +0200 Subject: [PATCH] Pronunciation. Spelling is hard. Maybe this time. /cc @themarex @systemed --- CHANGELOG.md | 4 ++-- include/engine/datafacade/internal_datafacade.hpp | 2 +- include/engine/datafacade/shared_datafacade.hpp | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 462106553..4d6e8e9cf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -9,12 +9,12 @@ - paramater `annotate` was renamed to `annotations`. - `annotation` as accidentally placed in `Route` instead of `RouteLeg` - Support for destination signs. New member `destinations` in `RouteStep`, based on `destination` and `destination:ref` - - Support for name pronounciations. New member `pronounciation` in `RouteStep`, based on `name:pronounciation` + - Support for name pronunciations. New member `pronunciation` in `RouteStep`, based on `name:pronunciation` - Add `nodes` property to `annotation` in `RouteLeg` containing the ids of nodes covered by the route - Profile changes: - `result.destinations` allows you to set a way's destinations - - `result.pronounciation` allows you to set way name pronounciations + - `result.pronunciation` allows you to set way name pronunciations - `highway=motorway_link` no longer implies `oneway` as per the OSM Wiki - Infrastructure diff --git a/include/engine/datafacade/internal_datafacade.hpp b/include/engine/datafacade/internal_datafacade.hpp index 236503f28..476ab179b 100644 --- a/include/engine/datafacade/internal_datafacade.hpp +++ b/include/engine/datafacade/internal_datafacade.hpp @@ -602,7 +602,7 @@ class InternalDataFacade final : public BaseDataFacade std::string GetPronunciationForID(const unsigned name_id) const override final { - // We store the pronounciation after the name and destination of a street. + // We store the pronunciation after the name and destination of a street. // We do this to get around the street length limit of 255 which would hit // if we concatenate these. Order (see extractor_callbacks): // name (0), destination (1), pronunciation (2) diff --git a/include/engine/datafacade/shared_datafacade.hpp b/include/engine/datafacade/shared_datafacade.hpp index cf607fc83..0efea1d0c 100644 --- a/include/engine/datafacade/shared_datafacade.hpp +++ b/include/engine/datafacade/shared_datafacade.hpp @@ -676,7 +676,7 @@ class SharedDataFacade final : public BaseDataFacade std::string GetPronunciationForID(const unsigned name_id) const override final { - // We store the pronounciation after the name and destination of a street. + // We store the pronunciation after the name and destination of a street. // We do this to get around the street length limit of 255 which would hit // if we concatenate these. Order (see extractor_callbacks): // name (0), destination (1), pronunciation (2)