From 9a9bb8564b7cc75c7c7c151e26294147a694626b Mon Sep 17 00:00:00 2001 From: David Alber Date: Sat, 20 Jan 2018 21:51:23 -0800 Subject: [PATCH] Fixing `spaces_within_parens_and_brackets=false` snippet --- Configurations.md | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Configurations.md b/Configurations.md index 3baf457d840..8f5ae7f517c 100644 --- a/Configurations.md +++ b/Configurations.md @@ -1592,7 +1592,9 @@ fn lorem(t: T) { } // non-empty square brackets -let lorem: [usize; 2] = [ipsum, dolor]; +fn lorem(t: T) { + let lorem: [usize; 2] = [ipsum, dolor]; +} ``` #### `true`: