diff options
author | dvorkanton <dvorkanton@yandex-team.ru> | 2022-02-10 16:46:04 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:46:04 +0300 |
commit | 110a978b66fe6c0916572df51cfead2a9b647174 (patch) | |
tree | 1a2c5ffcf89eb53ecd79dbc9bc0a195c27404d0c /ydb/library/yql/ast/yql_expr.h | |
parent | ce1ca0f8ad5b8231d32b35629f85bb09beea1bfb (diff) | |
download | ydb-110a978b66fe6c0916572df51cfead2a9b647174.tar.gz |
Restoring authorship annotation for <dvorkanton@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'ydb/library/yql/ast/yql_expr.h')
-rw-r--r-- | ydb/library/yql/ast/yql_expr.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ydb/library/yql/ast/yql_expr.h b/ydb/library/yql/ast/yql_expr.h index ffb7bc53e1..d6eb544f9a 100644 --- a/ydb/library/yql/ast/yql_expr.h +++ b/ydb/library/yql/ast/yql_expr.h @@ -12,7 +12,7 @@ #include <ydb/library/yql/public/issue/yql_issue_manager.h> #include <ydb/library/yql/public/udf/udf_data_type.h> -#include <library/cpp/string_utils/levenshtein_diff/levenshtein_diff.h> +#include <library/cpp/string_utils/levenshtein_diff/levenshtein_diff.h> #include <library/cpp/enumbitset/enumbitset.h> #include <library/cpp/containers/stack_vector/stack_vec.h> #include <library/cpp/deprecated/enum_codegen/enum_codegen.h> @@ -500,7 +500,7 @@ public: TMaybe<TStringBuf> FindMistype(const TStringBuf& name) const { for (const auto& item: Items) { - if (NLevenshtein::Distance(name, item->GetName()) < DefaultMistypeDistance) { + if (NLevenshtein::Distance(name, item->GetName()) < DefaultMistypeDistance) { return item->GetName(); } } |