mirror of
https://github.com/zoriya/octokit.net.git
synced 2026-06-07 20:30:41 +00:00
use string per recommended style
This commit is contained in:
@@ -54,7 +54,7 @@ namespace Octokit
|
||||
return (prop, value) =>
|
||||
{
|
||||
var list = ((IEnumerable<string>)value).ToArray();
|
||||
return !list.Any() ? null : String.Join(",", list);
|
||||
return !list.Any() ? null : string.Join(",", list);
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user