diff options
author | grachev <grachev@yandex-team.ru> | 2022-02-10 16:49:35 +0300 |
---|---|---|
committer | Daniil Cherednik <dcherednik@yandex-team.ru> | 2022-02-10 16:49:35 +0300 |
commit | 492d4842b42175970fd597869540936bf152ffb1 (patch) | |
tree | 5d5cb817648f650d76cf1076100726fd9b8448e8 /library/cpp/uri/other.cpp | |
parent | 12e3c82a4c0895fe4f03a4dc5d6f100cae665b64 (diff) | |
download | ydb-492d4842b42175970fd597869540936bf152ffb1.tar.gz |
Restoring authorship annotation for <grachev@yandex-team.ru>. Commit 2 of 2.
Diffstat (limited to 'library/cpp/uri/other.cpp')
-rw-r--r-- | library/cpp/uri/other.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/cpp/uri/other.cpp b/library/cpp/uri/other.cpp index f6f8115a43b..b23a5b68a9c 100644 --- a/library/cpp/uri/other.cpp +++ b/library/cpp/uri/other.cpp @@ -34,10 +34,10 @@ void UnTrspChars(const char* s, char* d) { } void InvertDomain(char* begin, char* end) { - // skip schema if it is present + // skip schema if it is present const auto dotPos = TStringBuf{begin, end}.find('.'); if (dotPos == TStringBuf::npos) - return; // no need to invert anything + return; // no need to invert anything const auto schemaendPos = TStringBuf{begin, end}.find("://", 3); if (schemaendPos < dotPos) begin += schemaendPos + 3; |