aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yt/exception
diff options
context:
space:
mode:
authorbabenko <babenko@yandex-team.com>2023-06-03 21:13:48 +0300
committerbabenko <babenko@yandex-team.com>2023-06-03 21:13:48 +0300
commitd642391d08e8f307e8a3ea6871cdc3b948aa3dfe (patch)
tree11397a8add6a5cb319ef6406acbf74edf36a8847 /library/cpp/yt/exception
parent2017c5d3f28b1ef047abf57e8b9cb94726207dcf (diff)
downloadydb-d642391d08e8f307e8a3ea6871cdc3b948aa3dfe.tar.gz
Fix typos in library/cpp/yt
Diffstat (limited to 'library/cpp/yt/exception')
-rw-r--r--library/cpp/yt/exception/exception.cpp2
-rw-r--r--library/cpp/yt/exception/exception.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/yt/exception/exception.cpp b/library/cpp/yt/exception/exception.cpp
index 1059d497e8..2729511d5a 100644
--- a/library/cpp/yt/exception/exception.cpp
+++ b/library/cpp/yt/exception/exception.cpp
@@ -8,7 +8,7 @@ TSimpleException::TSimpleException(TString message)
: Message_(std::move(message))
{ }
-const TString& TSimpleException::GetMesage() const
+const TString& TSimpleException::GetMessage() const
{
return Message_;
}
diff --git a/library/cpp/yt/exception/exception.h b/library/cpp/yt/exception/exception.h
index 7d35637d60..1ac3a76ea4 100644
--- a/library/cpp/yt/exception/exception.h
+++ b/library/cpp/yt/exception/exception.h
@@ -16,7 +16,7 @@ class TSimpleException
public:
explicit TSimpleException(TString message);
- const TString& GetMesage() const;
+ const TString& GetMessage() const;
const char* what() const noexcept override;
protected: