Skip to content

Commit a8df05d

Browse files
committed
fix ProvideCommentHelp for turkish culture (i problem again)
1 parent 5fea008 commit a8df05d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Rules/ProvideCommentHelp.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -419,7 +419,7 @@ public override string ToString()
419419
public virtual string ToString(int? tabStop)
420420
{
421421
var sb = new StringBuilder();
422-
sb.Append(".").AppendLine(Name.ToUpper());
422+
sb.Append(".").AppendLine(Name.ToUpperInvariant());
423423
if (!String.IsNullOrWhiteSpace(Description))
424424
{
425425
sb.Append(Snippetify(tabStop, Description));

0 commit comments

Comments
 (0)