From 57e1b9cc0b60f80c64f63538bfb9bdc5f7ec17f1 Mon Sep 17 00:00:00 2001 From: Adi Suissa-Peleg Date: Tue, 7 Nov 2023 19:01:33 +0000 Subject: [PATCH] fix typo Signed-off-by: Adi Suissa-Peleg --- source/extensions/filters/http/ext_proc/processor_state.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/extensions/filters/http/ext_proc/processor_state.cc b/source/extensions/filters/http/ext_proc/processor_state.cc index 0ce7054cd139..124d59a6f107 100644 --- a/source/extensions/filters/http/ext_proc/processor_state.cc +++ b/source/extensions/filters/http/ext_proc/processor_state.cc @@ -251,7 +251,7 @@ absl::Status ProcessorState::handleBodyResponse(const BodyResponse& response) { if (absl::SimpleAtoi(headers_->getContentLengthValue(), &content_length) && content_length != common_response.body_mutation().body().size()) { return absl::InternalError( - "mismatch between content length and the lenght of mutated body"); + "mismatch between content length and the length of the mutated body"); } } ENVOY_LOG(debug, "Applying body response to buffered data. State = {}",