summaryrefslogtreecommitdiffstats
path: root/src/doc/rust-by-example/src/primitives/tuples.md
diff options
context:
space:
mode:
Diffstat (limited to 'src/doc/rust-by-example/src/primitives/tuples.md')
-rw-r--r--src/doc/rust-by-example/src/primitives/tuples.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/rust-by-example/src/primitives/tuples.md b/src/doc/rust-by-example/src/primitives/tuples.md
index e745d89be..75c265e75 100644
--- a/src/doc/rust-by-example/src/primitives/tuples.md
+++ b/src/doc/rust-by-example/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.