We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 922121c commit a2475a9Copy full SHA for a2475a9
1 file changed
Src/ConfigurationElement.cs
@@ -82,7 +82,7 @@ private string GetFormattedComment()
82
comment = comment.Substring(0, newLineIndex);
83
}
84
85
- return Configuration.PreferredCommentChar + ' ' + comment;
+ return Configuration.PreferredCommentChar + " " + comment;
86
87
88
// Gets a formatted pre-comment string that is ready
@@ -92,7 +92,7 @@ private string GetFormattedPreComment()
92
var lines = PreComment.Split(formattedPreCommentSeparator, StringSplitOptions.None);
93
94
return string.Join(
95
- Environment.NewLine, Array.ConvertAll(lines, s => Configuration.PreferredCommentChar + ' ' + s));
+ Environment.NewLine, Array.ConvertAll(lines, s => Configuration.PreferredCommentChar + " " + s));
96
97
98
/// <summary>
0 commit comments