From 4d90b4d9b8ba4275be9031bf19c49f90c33c9823 Mon Sep 17 00:00:00 2001 From: David Campbell Date: Mon, 30 Mar 2015 18:31:42 -0400 Subject: [PATCH] Update let.md -- follow whitespace style guideline "Idiomatic code should not use extra whitespace in the middle of a line to provide alignment." --- src/doc/style/features/let.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/style/features/let.md b/src/doc/style/features/let.md index 6f423c6de8e..4a0bf4353b9 100644 --- a/src/doc/style/features/let.md +++ b/src/doc/style/features/let.md @@ -34,7 +34,7 @@ Prefer ```rust let foo = match bar { - Baz => 0, + Baz => 0, Quux => 1 }; ```