From d12fdad162cd737e825f457b36affbc91e458527 Mon Sep 17 00:00:00 2001 From: Alex Ozdemir Date: Wed, 16 Jan 2019 17:33:13 -0800 Subject: [PATCH] Typo in JSON serialization error message. --- lambda-runtime/src/runtime.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lambda-runtime/src/runtime.rs b/lambda-runtime/src/runtime.rs index caac0983..88a9c6a9 100644 --- a/lambda-runtime/src/runtime.rs +++ b/lambda-runtime/src/runtime.rs @@ -231,7 +231,7 @@ where } Err(e) => { error!( - "Could not marshal output object to Vec JSON represnetation for request {}: {}", + "Could not marshal output object to Vec JSON representation for request {}: {}", request_id, e ); self.runtime_client