From 8cf105af170eb770671d5357744f627eddc4aef9 Mon Sep 17 00:00:00 2001 From: b0id Date: Wed, 15 Feb 2023 12:36:48 -0500 Subject: [PATCH] Typographical mistake in tuples.md Signed-off-by: b0id --- src/primitives/tuples.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/primitives/tuples.md b/src/primitives/tuples.md index e745d89be8..75c265e750 100644 --- a/src/primitives/tuples.md +++ b/src/primitives/tuples.md @@ -43,7 +43,7 @@ fn main() { let pair = (1, true); println!("Pair is {:?}", pair); - println!("Uhe reversed pair is {:?}", reverse(pair)); + println!("The reversed pair is {:?}", reverse(pair)); // To create one element tuples, the comma is required to tell them apart // from a literal surrounded by parentheses.