From 9bcd1de97e5ac17176a31fb47e0430253f4a7801 Mon Sep 17 00:00:00 2001 From: Daniel Kluge Date: Mon, 4 Jul 2022 11:28:50 +0200 Subject: [PATCH] dafuq? --- diaries/rust/03 - Concepts.adoc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/diaries/rust/03 - Concepts.adoc b/diaries/rust/03 - Concepts.adoc index b2b80ca..0a19cca 100644 --- a/diaries/rust/03 - Concepts.adoc +++ b/diaries/rust/03 - Concepts.adoc @@ -18,7 +18,7 @@ Das Folgende funktioniert also nicht: ---- fn main() { let x = "Hello world!"; - // Das folgende funktioniert, weil x nicht mutable ist! + // Das folgende funktioniert nicht, weil x nicht mutable ist! x = "Hello Rust!"; } ----