aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp
diff options
context:
space:
mode:
authordgolear <dgolear@yandex-team.com>2024-12-03 22:08:34 +0300
committerdgolear <dgolear@yandex-team.com>2024-12-03 22:40:52 +0300
commit8834f9cd9ddd1bd3017c5ad57f585f6e20615eed (patch)
treeaffa86f08ea90915e5da34f0ffd00b4cc1d37933 /library/cpp
parent22fe5ee5907931544e18ef267cbefe556f3b9246 (diff)
downloadydb-8834f9cd9ddd1bd3017c5ad57f585f6e20615eed.tar.gz
YTORM: Validate pivot keys in slicer; add a comment about proxy_role option
commit_hash:2404d2a79d4961dedf17f7d0cbec38bcabb78014
Diffstat (limited to 'library/cpp')
-rw-r--r--library/cpp/yson/node/node.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/yson/node/node.h b/library/cpp/yson/node/node.h
index 68c50deadd..2e60dd1abd 100644
--- a/library/cpp/yson/node/node.h
+++ b/library/cpp/yson/node/node.h
@@ -78,7 +78,7 @@ public:
TNode(TString s);
TNode(int i);
- //this case made speccially for prevent mess cast of EType into TNode through TNode(int) constructor
+ //this case made specially to prevent mess cast of EType into TNode through TNode(int) constructor
//usual case of error SomeNode == TNode::Undefined <-- SomeNode indeed will be compared with TNode(0) without this method
//correct way is SomeNode.GetType() == TNode::Undefined
template<class T = EType>