From a556cdedced00e1e4c9c94c7013196f6063b381d Mon Sep 17 00:00:00 2001 From: Furkan Date: Wed, 8 Jan 2025 05:20:23 +0100 Subject: [PATCH] [rust/en] fix typo (#5225) --- rust.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rust.md b/rust.md index 892a1818..48813ac7 100644 --- a/rust.md +++ b/rust.md @@ -89,7 +89,7 @@ fn main() { let x: &str = "hello world!"; // Printing - println!("{} {}", f, x); // 1.3 hello world + println!("{} {}", f, x); // 1.3 hello world! // A `String` – a heap-allocated string // Stored as a `Vec` and always holds a valid UTF-8 sequence,