Skip to content

Commit

Permalink
refactor: narrow return value of private Config.Load()
Browse files Browse the repository at this point in the history
  • Loading branch information
adamralph committed May 22, 2016
1 parent 94cb466 commit 0ef6df9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/ConfigR/Config.cs
Expand Up @@ -33,7 +33,7 @@ public IConfig UseLoader(ILoader loader)
public async Task<IDictionary<string, object>> LoadDictionary(IDictionary<string, object> seed) => await this.Load(seed);

// private
private async Task<IDictionary<string, object>> Load(DynamicDictionary config)
private async Task<DynamicDictionary> Load(DynamicDictionary config)
{
foreach (var loader in this.loaders)
{
Expand Down

0 comments on commit 0ef6df9

Please sign in to comment.