Skip to content
This repository was archived by the owner on Dec 21, 2023. It is now read-only.

Commit d4050ee

Browse files
committed
Use string keyword in place of String type
1 parent ed1ef70 commit d4050ee

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

OpenTabletDriver.Web/TagHelpers/CodeBlockTagHelper.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,7 @@ private string TrimBaseIndentation(string content)
5252
lines[i] = line.Substring(Math.Min(baseIndentationLength, line.Length)).TrimEnd();
5353
}
5454

55-
return String.Join(Environment.NewLine, lines);
55+
return string.Join(Environment.NewLine, lines);
5656
}
5757

5858
private static readonly Regex TrimStartRegex = new Regex("^\\s*\n(\\s*)(?=\\S*)", RegexOptions.Compiled);

0 commit comments

Comments
 (0)