From 416bc4c35331f67d82c052d40b1d0d524d092eb2 Mon Sep 17 00:00:00 2001 From: Nick Cameron Date: Fri, 18 May 2018 16:02:05 +1200 Subject: [PATCH] Unstabilise comments options cc #1974 --- src/config/mod.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/config/mod.rs b/src/config/mod.rs index ac81ded5f76f..b903a4e58047 100644 --- a/src/config/mod.rs +++ b/src/config/mod.rs @@ -46,10 +46,10 @@ create_config! { indent_style: IndentStyle, IndentStyle::Block, false, "How do we indent expressions or items."; // Comments and strings - wrap_comments: bool, false, true, "Break comments to fit on the line"; + wrap_comments: bool, false, false, "Break comments to fit on the line"; comment_width: usize, 80, false, "Maximum length of comments. No effect unless wrap_comments = true"; - normalize_comments: bool, false, true, "Convert /* */ comments to // comments where possible"; + normalize_comments: bool, false, false, "Convert /* */ comments to // comments where possible"; license_template_path: String, String::default(), false, "Beginning of file must match license template"; format_strings: bool, false, false, "Format string literals where necessary";