Browse Source

Cosmetics
d1095d949cece50ea82a07a544cf10ef08a02583

dtorilov 10 months ago
parent
commit
56f55ef728
1 changed files with 2 additions and 2 deletions
  1. 2 2
      yt/yt/client/table_client/logical_type.cpp

+ 2 - 2
yt/yt/client/table_client/logical_type.cpp

@@ -368,7 +368,7 @@ std::optional<ESimpleLogicalValueType> TOptionalLogicalType::Simplify() const
 size_t TOptionalLogicalType::GetMemoryUsage() const
 {
     if (Element_->GetMetatype() == ELogicalMetatype::Simple) {
-        // All optionals of simple logical types are signletons and therefore we assume they use no space.
+        // All optionals of simple logical types are singletons and therefore we assume they use no space.
         return 0;
     } else {
         return sizeof(*this) + Element_->GetMemoryUsage();
@@ -401,7 +401,7 @@ TSimpleLogicalType::TSimpleLogicalType(ESimpleLogicalValueType element)
 
 size_t TSimpleLogicalType::GetMemoryUsage() const
 {
-    // All simple logical types are signletons and therefore we assume they use no space.
+    // All simple logical types are singletons and therefore we assume they use no space.
     return 0;
 }