From f53afc8c23de663405469737a9a24cef3e498ba6 Mon Sep 17 00:00:00 2001 From: Simon Date: Fri, 1 Jan 2021 04:57:10 +0100 Subject: [PATCH] [Fix] Review feedback --- README.md | 2 +- anti_patterns/catch_panic.md | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index d43d8fd8..1fab3168 100644 --- a/README.md +++ b/README.md @@ -56,7 +56,7 @@ language. ### Anti-patterns -* [panic::catch_unwind for exceptions](anti_patterns/catch_panic.md) +* [catch_unwind for exceptions](anti_patterns/catch_panic.md) * TODO Clone to satisfy the borrow checker * [Deref polymorphism](anti_patterns/deref.md) * TODO Matching all fields of a struct (back compat) diff --git a/anti_patterns/catch_panic.md b/anti_patterns/catch_panic.md index 4d08370c..b0ea2182 100644 --- a/anti_patterns/catch_panic.md +++ b/anti_patterns/catch_panic.md @@ -1,8 +1,8 @@ -# panic::catch_unwind for exceptions +# catch_unwind for exceptions ## Description -This antipattern arises when the method for catching (`panic::catch_unwind`) an +This anti-pattern arises when the method for catching (`panic::catch_unwind`) an unexpected problem (implementation bug) is used to handle an expected problem, such as a missing file.