From 7ecf6f86e068df9d32c697f77f94dbb6a17b6f6a Mon Sep 17 00:00:00 2001 From: Bradlee Speice Date: Sun, 2 Sep 2018 21:13:59 -0400 Subject: [PATCH] Example error --- _posts/2018-09-01-primitives-in-rust-are-weird.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_posts/2018-09-01-primitives-in-rust-are-weird.md b/_posts/2018-09-01-primitives-in-rust-are-weird.md index c2b8591..4a7b70e 100644 --- a/_posts/2018-09-01-primitives-in-rust-are-weird.md +++ b/_posts/2018-09-01-primitives-in-rust-are-weird.md @@ -11,7 +11,7 @@ couldn't possibly run: ```rust fn main() { - println("{}", 8.to_string()) + println!("{}", 8.to_string()) } ```