From 40121dd78afb69bbae5f73bf5651e9f0ab47ff79 Mon Sep 17 00:00:00 2001 From: Ahson Khan Date: Fri, 4 Sep 2020 17:55:15 -0700 Subject: [PATCH] Fix typo in comment. (#610) --- sdk/core/azure-core/src/http/request.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sdk/core/azure-core/src/http/request.cpp b/sdk/core/azure-core/src/http/request.cpp index 52e949863..b2182b334 100644 --- a/sdk/core/azure-core/src/http/request.cpp +++ b/sdk/core/azure-core/src/http/request.cpp @@ -47,7 +47,7 @@ HttpMethod Request::GetMethod() const { return this->m_method; } std::map 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); }