From 902f113e6fc8068d078dfc0295dafb87ea70ba82 Mon Sep 17 00:00:00 2001 From: Au Date: Sat, 29 Apr 2023 22:06:07 +0800 Subject: [PATCH] Update reenter_question_mark.md Add missing bracket --- src/error/multiple_error_types/reenter_question_mark.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/error/multiple_error_types/reenter_question_mark.md b/src/error/multiple_error_types/reenter_question_mark.md index 61f80fc3e3..998b741e79 100644 --- a/src/error/multiple_error_types/reenter_question_mark.md +++ b/src/error/multiple_error_types/reenter_question_mark.md @@ -5,7 +5,7 @@ Notice in the previous example that our immediate reaction to calling error: ```rust,ignore -.and_then(|s| s.parse::() +.and_then(|s| s.parse::()) .map_err(|e| e.into()) ```