mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-05 03:30:34 +00:00
use string per recommended style
This commit is contained in:
@@ -47,7 +47,7 @@ namespace Octokit
|
||||
get
|
||||
{
|
||||
var name = (Commit != null && Commit.Author != null) ? Commit.Author.Name : "";
|
||||
return String.Format(CultureInfo.InvariantCulture, "Sha: {0} Author: {1}", Sha, name);
|
||||
return string.Format(CultureInfo.InvariantCulture, "Sha: {0} Author: {1}", Sha, name);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user