fix a typo

This commit is contained in:
Chunting Gu
2021-02-01 09:30:27 +08:00
parent 1b8b0b24ac
commit ad5c868ca4
3 changed files with 6 additions and 6 deletions
+3 -3
View File
@@ -16,8 +16,8 @@ public:
void Init(Response* response, bool stream = false);
void set_ignroe_body(bool ignroe_body) {
ignroe_body_ = ignroe_body;
void set_ignore_body(bool ignore_body) {
ignore_body_ = ignore_body;
}
private:
@@ -37,7 +37,7 @@ private:
// The response for HEAD request could also have `Content-Length` header,
// set this flag to ignore it.
bool ignroe_body_ = false;
bool ignore_body_ = false;
};
} // namespace webcc