File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff 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>
You can’t perform that action at this time.
0 commit comments