diff options
Diffstat (limited to 'library/cpp/tld/tld.h')
-rw-r--r-- | library/cpp/tld/tld.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/tld/tld.h b/library/cpp/tld/tld.h index 3478c15673..9e241de090 100644 --- a/library/cpp/tld/tld.h +++ b/library/cpp/tld/tld.h @@ -6,7 +6,7 @@ namespace NTld { const char* const* GetTlds(); // Note that FindTld() returns empty string when @host is single domain label (without '.'). - // If you need whole @host for such case, you can use GetZone() from library/cpp/string_utils/url/url.h + // If you need whole @host for such case, you can use GetZone() from library/cpp/string_utils/url/url.h inline TStringBuf FindTld(const TStringBuf& host) { size_t p = host.rfind('.'); return p != TStringBuf::npos ? host.SubStr(p + 1) : TStringBuf(); |