From 570a5114ae4899bd1baf9c5667dfb3ecafc54d08 Mon Sep 17 00:00:00 2001 From: Mark Fulop Date: Fri, 19 Aug 2016 14:36:18 +0200 Subject: [PATCH] Verboten is not an English word Changed a single word, which was written in German instead of English. --- src/doc/book/variable-bindings.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/book/variable-bindings.md b/src/doc/book/variable-bindings.md index 30e922d7f4dc0..0d5c2892a8867 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