diff --git a/Configurations.md b/Configurations.md index 3ff05909447c..98e9d668c36d 100644 --- a/Configurations.md +++ b/Configurations.md @@ -1091,11 +1091,13 @@ Put a trailing comma after a block based match arm (non-block arms are not affec #### `false` (default): ```rust -match lorem { - Lorem::Ipsum => { - println!("ipsum"); +fn main() { + match lorem { + Lorem::Ipsum => { + println!("ipsum"); + } + Lorem::Dolor => println!("dolor"), } - Lorem::Dolor => println!("dolor"), } ```