diff --git a/src/doc/book/src/if-let.md b/src/doc/book/src/if-let.md index 17bf13690009f..9eeac3d687ebf 100644 --- a/src/doc/book/src/if-let.md +++ b/src/doc/book/src/if-let.md @@ -1,6 +1,6 @@ # if let -`if let` permits [patterns][pattern] matching within the condition of an [if][if] statement. +`if let` permits [patterns][patterns] matching within the condition of an [if][if] statement. This allows us to reduce the overhead of certain kinds of [pattern][patterns] matches and express them in a more convenient way.