summaryrefslogtreecommitdiffstats
path: root/library/cpp/http/io/headers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'library/cpp/http/io/headers.cpp')
-rw-r--r--library/cpp/http/io/headers.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/cpp/http/io/headers.cpp b/library/cpp/http/io/headers.cpp
index 4ec27a29e83..e23a8257fc0 100644
--- a/library/cpp/http/io/headers.cpp
+++ b/library/cpp/http/io/headers.cpp
@@ -16,7 +16,7 @@ THttpInputHeader::THttpInputHeader(const TStringBuf header) {
size_t pos = header.find(':');
if (pos == TString::npos) {
- ythrow THttpParseException() << "can not parse http header(" << TString{header}.Quote() << ")";
+ ythrow THttpParseException() << "can not parse http header(" << TString{header}.Quote() << ")";
}
Name_ = TString(header.cbegin(), header.cbegin() + pos);