aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authorcoteeq <coteeq@yandex-team.com>2025-01-16 11:22:10 +0300
committercoteeq <coteeq@yandex-team.com>2025-01-16 11:39:38 +0300
commit9ef54447fb808783ad84dd50b946c3e493a99128 (patch)
tree7beeb9bd400f0122d747a8f4ff17da7fb33af193 /library/cpp
parent91c93c6242a085c447175d5967222b5550b83cfc (diff)
downloadydb-9ef54447fb808783ad84dd50b946c3e493a99128.tar.gz
Typos
commit_hash:afeeeea3c2cbdec0ddeed0fea5f88df9d8575f8b
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/yt/threading/atomic_object.h2
1 files changed, 1 insertions, 1 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);