[rust/en] fix typo

This commit is contained in:
kfurkanbek 2025-01-07 21:13:18 +01:00
parent 0a8c4bf7e8
commit 44158e72a9

View File

@ -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<u8>` and always holds a valid UTF-8 sequence,