From 103f3e771abeb7883b17d4cf7328dfad05b608ca Mon Sep 17 00:00:00 2001 From: Bryan Burgers Date: Wed, 8 Jan 2020 10:26:11 -0600 Subject: [PATCH] Fix HandlerError documentation Add a missing backtick in the HandlerError documentation that was messing up the rest of the paragraph. --- lambda-runtime-errors/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lambda-runtime-errors/src/lib.rs b/lambda-runtime-errors/src/lib.rs index 13881331..9a04e5ce 100644 --- a/lambda-runtime-errors/src/lib.rs +++ b/lambda-runtime-errors/src/lib.rs @@ -120,7 +120,7 @@ where /// The `HandlerError` struct can be use to abstract any `Err` of the handler method `Result`. /// The `HandlerError` object can be generated `From` any object that supports `Display`, -/// `Send, `Sync`, and `Debug`. This allows handler functions to return any error using +/// `Send`, `Sync`, and `Debug`. This allows handler functions to return any error using /// the `?` syntax. For example `let _age_num: u8 = e.age.parse()?;` will return the /// `::Err` from the handler function. //pub type HandlerError = failure::Error;