mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-01 10:25:36 +00:00
use string per recommended style
This commit is contained in:
@@ -21,7 +21,7 @@ namespace Octokit.Tests.Conventions
|
||||
|
||||
static string CreateMessage(Type type, IEnumerable<string> methods)
|
||||
{
|
||||
var methodsFormatted = String.Join("\r\n", methods.Select(m => String.Format(" - {0}", m)));
|
||||
var methodsFormatted = string.Join("\r\n", methods.Select(m => string.Format(" - {0}", m)));
|
||||
return "Methods found on type {0} which should be removed:\r\n{1}"
|
||||
.FormatWithNewLine(
|
||||
type.Name,
|
||||
|
||||
Reference in New Issue
Block a user