From c1aa8b77d5eb14e2504de06445e5a16febaad55c Mon Sep 17 00:00:00 2001 From: Poulad Ashrafpour <14295804+poulad@users.noreply.github.com> Date: Wed, 28 Nov 2018 22:16:33 -0500 Subject: [PATCH] Edit a typo --- src/flow_control/match/destructuring/destructure_pointers.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flow_control/match/destructuring/destructure_pointers.md b/src/flow_control/match/destructuring/destructure_pointers.md index 9f2ab60e42..d92ba22be8 100644 --- a/src/flow_control/match/destructuring/destructure_pointers.md +++ b/src/flow_control/match/destructuring/destructure_pointers.md @@ -14,7 +14,7 @@ fn main() { let reference = &4; match reference { - // If `reference`s is pattern matched against `&val`, it results + // If `reference` is pattern matched against `&val`, it results // in a comparison like: // `&i32` // `&val` @@ -58,4 +58,4 @@ fn main() { }, } } -``` \ No newline at end of file +```