Fix link in if let docs

This commit is contained in:
Kevin Yap 2017-03-01 01:01:37 -08:00
parent 7ce1fbe1f7
commit 9d99e12675

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.