From 9d99e126757ce4fd9f3278be98d87697cd5fcaeb Mon Sep 17 00:00:00 2001 From: Kevin Yap Date: Wed, 1 Mar 2017 01:01:37 -0800 Subject: [PATCH] Fix link in `if let` docs --- src/doc/book/src/if-let.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/src/if-let.md b/src/doc/book/src/if-let.md index 17bf1369000..9eeac3d687e 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.