Skip to content

Commit a2475a9

Browse files
committed
Revert char concat
1 parent 922121c commit a2475a9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Src/ConfigurationElement.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ private string GetFormattedComment()
8282
comment = comment.Substring(0, newLineIndex);
8383
}
8484

85-
return Configuration.PreferredCommentChar + ' ' + comment;
85+
return Configuration.PreferredCommentChar + " " + comment;
8686
}
8787

8888
// Gets a formatted pre-comment string that is ready
@@ -92,7 +92,7 @@ private string GetFormattedPreComment()
9292
var lines = PreComment.Split(formattedPreCommentSeparator, StringSplitOptions.None);
9393

9494
return string.Join(
95-
Environment.NewLine, Array.ConvertAll(lines, s => Configuration.PreferredCommentChar + ' ' + s));
95+
Environment.NewLine, Array.ConvertAll(lines, s => Configuration.PreferredCommentChar + " " + s));
9696
}
9797

9898
/// <summary>

0 commit comments

Comments
 (0)