From: kellerkindt Date: Tue, 27 Dec 2016 01:26:30 +0000 (+0100) Subject: And suddenly a german word :O X-Git-Url: https://git.lizzy.rs/?a=commitdiff_plain;h=20abf050e7f5698cd1012de00295ec805143735a;p=rust.git And suddenly a german word :O "verboten" is german for "forbidden" --- diff --git a/src/doc/book/variable-bindings.md b/src/doc/book/variable-bindings.md index 37b6c0513fc..e1947310a9a 100644 --- a/src/doc/book/variable-bindings.md +++ b/src/doc/book/variable-bindings.md @@ -102,7 +102,7 @@ mutation, then the solution is quite easy: add `mut`. There are other good reasons to avoid mutable state when possible, but they’re out of the scope of this guide. In general, you can often avoid explicit mutation, and so it is preferable in Rust. That said, sometimes, mutation is -what you need, so it’s not verboten. +what you need, so it’s not forbidden. # Initializing bindings