about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/doc/book/src/if-let.md2
1 files changed, 1 insertions, 1 deletions
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.