From f9e8bc296841fc461fe3552c63d5d6d259777bd1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jonathan=20Schleu=C3=9Fer?= Date: Sun, 15 May 2016 15:28:01 +0200 Subject: [PATCH] Replace german by english word --- 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 1c8c03cf67937..4aa93799fdb19 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