[rust/en] fix typo (#5225)
Some checks failed
Trigger site build / deploy (push) Has been cancelled
CI / lint (push) Has been cancelled

This commit is contained in:
Furkan 2025-01-08 05:20:23 +01:00 committed by GitHub
parent 0a8c4bf7e8
commit a556cdedce
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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,