Use base type for argument

This commit is contained in:
Haacked
2015-08-04 21:18:39 -07:00
parent 0b13411ef5
commit 8a7e5efa81
3 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ namespace Octokit
[DebuggerDisplay("{DebuggerDisplay,nq}")]
public class NewRepositoryHook
{
public NewRepositoryHook(string name, Dictionary<string, string> config)
public NewRepositoryHook(string name, IReadOnlyDictionary<string, string> config)
{
Name = name;
Config = config;