aboutsummaryrefslogtreecommitdiffstats
path: root/library/cpp/yson/node/node.h
diff options
context:
space:
mode:
authorAlexander Smirnov <alex@ydb.tech>2024-12-04 17:17:08 +0000
committerAlexander Smirnov <alex@ydb.tech>2024-12-04 17:17:08 +0000
commitecb5b9bc62d129501602ad865a4e78da33e7595a (patch)
tree14bf7439dc67d2d6f15e0615ee87aae0b2cc38cd /library/cpp/yson/node/node.h
parent4f81e5020ff9a0f164249de98dc146b525a01aec (diff)
parent0ee4aa0bed96decb383c7ac2ffb9bcfa76188acd (diff)
downloadydb-ecb5b9bc62d129501602ad865a4e78da33e7595a.tar.gz
Merge branch 'rightlib' into mergelibs-241204-1715
Diffstat (limited to 'library/cpp/yson/node/node.h')
-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 68c50deadd5..2e60dd1abd3 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>