From 034bd7a88e5075059441642ecd73a2abe96bc740 Mon Sep 17 00:00:00 2001 From: David Alber Date: Sun, 14 Jan 2018 17:12:38 -0800 Subject: [PATCH] Fixing `brace_style="AlwaysNextLine"` structs and enums snippet --- Configurations.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Configurations.md b/Configurations.md index 77088f4362ba..8bcdb7504131 100644 --- a/Configurations.md +++ b/Configurations.md @@ -783,7 +783,8 @@ struct Lorem { } struct Dolor - where T: Eq +where + T: Eq, { sit: T, }