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
path: root/3party
diff options
context:
space:
mode:
authorAlex Zolotarev <alex@maps.me>2015-04-15 21:46:34 +0300
committerAlex Zolotarev <alex@maps.me>2015-09-23 02:46:11 +0300
commit2a640ff8f07d4e21779e23c59ac75b147314daed (patch)
tree8b675b97407a7dd4e42605db0221f30ad36c8457 /3party
parentc7e0a67c1b04e6341c89d6e81adc407aa554073a (diff)
[alohalytics] Minor spelling fix.
Diffstat (limited to '3party')
-rw-r--r--3party/Alohalytics/src/gzip_wrapper.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/3party/Alohalytics/src/gzip_wrapper.h b/3party/Alohalytics/src/gzip_wrapper.h
index a5f68851fa..408969be97 100644
--- a/3party/Alohalytics/src/gzip_wrapper.h
+++ b/3party/Alohalytics/src/gzip_wrapper.h
@@ -71,7 +71,7 @@ inline std::string Gzip(const std::string& data_to_compress) {
struct GunzipErrorException : public std::exception {
std::string msg_;
GunzipErrorException(int err, const char* msg) {
- msg_ = std::string("ERROR ") + std::to_string(err) + " while gzipping with zlib. " + (msg ? msg : "");
+ msg_ = std::string("ERROR ") + std::to_string(err) + " while gunzipping with zlib. " + (msg ? msg : "");
}
virtual char const* what() const noexcept { return msg_.c_str(); }
};