Fix typo in comment. (#610)

This commit is contained in:
Ahson Khan 2020-09-04 17:55:15 -07:00 committed by GitHub
parent 864582b10e
commit 40121dd78a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -47,7 +47,7 @@ HttpMethod Request::GetMethod() const { return this->m_method; }
std::map<std::string, std::string> Request::GetHeaders() const
{
// create map with retry headers witch are the most important and we don't want
// create map with retry headers which are the most important and we don't want
// to override them with any duplicate header
return Details::MergeMaps(this->m_retryHeaders, this->m_headers);
}