From 80e7efb1b72317bd2caf009f9c83e6035157ba7f Mon Sep 17 00:00:00 2001 From: Patricio Palladino Date: Mon, 10 Feb 2020 19:45:35 -0300 Subject: [PATCH] Add missing `dyn` --- src/error/multiple_error_types/reenter_question_mark.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/error/multiple_error_types/reenter_question_mark.md b/src/error/multiple_error_types/reenter_question_mark.md index bf93e8a42d..a94c0f8e5e 100644 --- a/src/error/multiple_error_types/reenter_question_mark.md +++ b/src/error/multiple_error_types/reenter_question_mark.md @@ -26,8 +26,8 @@ Here, we rewrite the previous example using `?`. As a result, the use std::error; use std::fmt; -// Change the alias to `Box`. -type Result = std::result::Result>; +// Change the alias to `Box`. +type Result = std::result::Result>; #[derive(Debug)] struct EmptyVec;