mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 19:46:07 +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 not found on interface {0} which are required:\r\n{1}"
|
||||
.FormatWithNewLine(type.Name, methodsFormatted);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user