Rollup merge of #40170 - iKevinY:if-let-typo, r=frewsxcv

Fix link in `if let` docs

r? @steveklabnik
This commit is contained in:
Guillaume Gomez 2017-03-02 11:29:39 +01:00 committed by GitHub
commit e583b6a605
1 changed files with 1 additions and 1 deletions

View File

@ -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.