diff options
Diffstat (limited to 'src/DotNetOpenAuth.Core/Util.cs')
-rw-r--r-- | src/DotNetOpenAuth.Core/Util.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/DotNetOpenAuth.Core/Util.cs b/src/DotNetOpenAuth.Core/Util.cs index 3463808..ebbaaa4 100644 --- a/src/DotNetOpenAuth.Core/Util.cs +++ b/src/DotNetOpenAuth.Core/Util.cs @@ -235,7 +235,7 @@ namespace DotNetOpenAuth { /// <typeparam name="TResult">The type of the result.</typeparam> /// <param name="source">The source.</param> /// <param name="transform">The transform.</param> - /// <returns></returns> + /// <returns>A dictionary populated with the results of the transforms.</returns> internal static async Task<Dictionary<TSource, TResult>> ToDictionaryAsync<TSource, TResult>( this IEnumerable<TSource> source, Func<TSource, Task<TResult>> transform) { var taskResults = source.ToDictionary(s => s, transform); |