Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mapsme/omim.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSergey Magidovich <mgsergio@mapswithme.com>2016-05-24 11:24:05 +0300
committerSergey Magidovich <mgsergio@mapswithme.com>2016-05-25 13:49:21 +0300
commitebf0f1d3e776bab62e21c322a7ed30c6fac5c485 (patch)
tree559bf8d045b582f288a0ee5de92870bf299fdfd8 /indexer/postcodes_matcher.hpp
parent10782c6d3ed310aa316e96a2aa6be487a4fbfde6 (diff)
Fix comment.
Diffstat (limited to 'indexer/postcodes_matcher.hpp')
-rw-r--r--indexer/postcodes_matcher.hpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/indexer/postcodes_matcher.hpp b/indexer/postcodes_matcher.hpp
index 96557a239c..3d0ab900a9 100644
--- a/indexer/postcodes_matcher.hpp
+++ b/indexer/postcodes_matcher.hpp
@@ -9,8 +9,8 @@ namespace search
{
bool LooksLikePostcode(StringSliceBase const & slice, bool handleAsPrefix);
/// Splits s into tokens and call LooksLikePostcode(TokenSlice) on the result.
-/// If checkPrefix is true returns true if some postcode starts with s.
-/// If checkPrefix is false returns true if s equals to some postcode.
+/// If handleAsPrefix is true returns true if some postcode starts with s.
+/// If handleAsPrefix is false returns true if s equals to some postcode.
bool LooksLikePostcode(string const & s, bool handleAsPrefix);
size_t GetMaxNumTokensInPostcode();