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

Commit

Permalink
Use string keyword in place of String type
Browse files Browse the repository at this point in the history
  • Loading branch information
InfinityGhost committed Jun 7, 2022
1 parent ed1ef70 commit d4050ee
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion OpenTabletDriver.Web/TagHelpers/CodeBlockTagHelper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ private string TrimBaseIndentation(string content)
lines[i] = line.Substring(Math.Min(baseIndentationLength, line.Length)).TrimEnd();
}

return String.Join(Environment.NewLine, lines);
return string.Join(Environment.NewLine, lines);
}

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

0 comments on commit d4050ee

Please sign in to comment.