diff options
author | coteeq <coteeq@yandex-team.com> | 2025-01-16 11:22:10 +0300 |
---|---|---|
committer | coteeq <coteeq@yandex-team.com> | 2025-01-16 11:39:38 +0300 |
commit | 9ef54447fb808783ad84dd50b946c3e493a99128 (patch) | |
tree | 7beeb9bd400f0122d747a8f4ff17da7fb33af193 | |
parent | 91c93c6242a085c447175d5967222b5550b83cfc (diff) | |
download | ydb-9ef54447fb808783ad84dd50b946c3e493a99128.tar.gz |
Typos
commit_hash:afeeeea3c2cbdec0ddeed0fea5f88df9d8575f8b
-rw-r--r-- | library/cpp/yt/threading/atomic_object.h | 2 | ||||
-rw-r--r-- | yt/yt/core/phoenix/yson_def.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/yt/threading/atomic_object.h b/library/cpp/yt/threading/atomic_object.h index 232a567e2d..8b642c0f4f 100644 --- a/library/cpp/yt/threading/atomic_object.h +++ b/library/cpp/yt/threading/atomic_object.h @@ -26,7 +26,7 @@ public: template <class U> T Exchange(U&& u); - //! Atomically checks if then current value equals #expected. + //! Atomically checks if the current value equals to #expected. //! If so, replaces it with #desired and returns |true|. //! Otherwise, copies it into #expected and returns |false|. bool CompareExchange(T& expected, const T& desired); diff --git a/yt/yt/core/phoenix/yson_def.h b/yt/yt/core/phoenix/yson_def.h index 81127ca8aa..8f8e11764b 100644 --- a/yt/yt/core/phoenix/yson_def.h +++ b/yt/yt/core/phoenix/yson_def.h @@ -15,7 +15,7 @@ namespace NYT::NPhoenix { #define PHOENIX_DEFINE_YSON_DUMPABLE_TYPE_MIXIN(type) //! Declares (and also inline-defines) YSON serialization mixin for a template type. -//! No matching PHEONIX_DEFINE_YSON_* macro is needed. +//! No matching PHOENIX_DEFINE_YSON_* macro is needed. #define PHOENIX_DECLARE_YSON_DUMPABLE_TEMPLATE_MIXIN(type) //////////////////////////////////////////////////////////////////////////////// |