From 4119fc27498dba51d0233f0496ff8d03036ee350 Mon Sep 17 00:00:00 2001 From: Colin Wallace Date: Sat, 19 Sep 2015 19:50:42 -0700 Subject: [PATCH] Fix "the the" typo and split a run-on sentence --- src/doc/trpl/patterns.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/trpl/patterns.md b/src/doc/trpl/patterns.md index a365732fe9b..3d22066c725 100644 --- a/src/doc/trpl/patterns.md +++ b/src/doc/trpl/patterns.md @@ -299,7 +299,7 @@ match x { ``` This prints `no`, because the `if` applies to the whole of `4 | 5`, and not to -just the `5`, In other words, the the precedence of `if` behaves like this: +just the `5`. In other words, the precedence of `if` behaves like this: ```text (4 | 5) if y => ...