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,