From 27a70b527582dabef88b7bbf0f5c39bdff9361dd Mon Sep 17 00:00:00 2001 From: Nylme Date: Thu, 2 Oct 2025 21:22:35 +1000 Subject: [PATCH] Include a link to The Rust Reference in flow_control/match/destructuring --- src/flow_control/match/destructuring.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/src/flow_control/match/destructuring.md b/src/flow_control/match/destructuring.md index 763d1f85a0..341889388a 100644 --- a/src/flow_control/match/destructuring.md +++ b/src/flow_control/match/destructuring.md @@ -13,3 +13,7 @@ A `match` block can destructure items in a variety of ways. [struct]: destructuring/destructure_structures.md [tuple]: destructuring/destructure_tuple.md [slice]: destructuring/destructure_slice.md + +### See also: + +[The Rust Reference for Destructuring](https://doc.rust-lang.org/reference/patterns.html#r-patterns.destructure)