diff --git a/src/librustc_mir_build/hair/pattern/_match.rs b/src/librustc_mir_build/hair/pattern/_match.rs index d08319e8327fb..16d783fcad213 100644 --- a/src/librustc_mir_build/hair/pattern/_match.rs +++ b/src/librustc_mir_build/hair/pattern/_match.rs @@ -64,9 +64,9 @@ /// (`Constructor`, `Fields`) pairs, handling all the special cases correctly. /// /// Caveat: this constructors/fields distinction doesn't quite cover every Rust value. For example -/// a value of type `Rc` doesn't fit this idea very well, nor do function pointers and various -/// other things. However, the idea covers everything that can be pattern-matched, and this is all -/// we need for exhaustiveness checking. +/// a value of type `Rc` doesn't fit this idea very well, nor do various other things. +/// However, this idea covers everything that can be pattern-matched, and this is all we need for +/// exhaustiveness checking. /// /// /// # Algorithm