From 7a3815c18c12afddadd03d70a6781cd2e4d7cfb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jorge=20E=2E=20Hern=C3=A1ndez?= Date: Sat, 30 Jul 2022 01:41:24 -0500 Subject: [PATCH] Remove duplicate line in the hello/print.md file --- src/hello/print.md | 1 - 1 file changed, 1 deletion(-) diff --git a/src/hello/print.md b/src/hello/print.md index 34dc9f0dd3..b491e14048 100644 --- a/src/hello/print.md +++ b/src/hello/print.md @@ -35,7 +35,6 @@ fn main() { println!("Base 2 (binary) repr: {:b}", 69420); println!("Base 8 (octal) repr: {:o}", 69420); println!("Base 16 (hexadecimal) repr: {:x}", 69420); - println!("Base 16 (hexadecimal) repr: {:X}", 69420); // You can right-align text with a specified width. This will output // " 1". 4 white spaces and a "1", for a total width of 5.