From 44158e72a9c19dded89cacfc660c7cf15a7f231c Mon Sep 17 00:00:00 2001 From: kfurkanbek Date: Tue, 7 Jan 2025 21:13:18 +0100 Subject: [PATCH] [rust/en] fix typo --- 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,