diff options
author | Andrew Arnott <andrewarnott@gmail.com> | 2013-02-10 21:49:43 -0800 |
---|---|---|
committer | Andrew Arnott <andrewarnott@gmail.com> | 2013-02-10 21:49:43 -0800 |
commit | 04426dfbba325fd4ed308a6c9c6c103fed14ff13 (patch) | |
tree | f1b8b9245a3fe3b3ab6fa0f2f54db86463dc3099 /src/DotNetOpenAuth.Core/Util.cs | |
parent | 938a79f28b0fb5718cc58f8f20be5d4207bc189f (diff) | |
download | DotNetOpenAuth-04426dfbba325fd4ed308a6c9c6c103fed14ff13.zip DotNetOpenAuth-04426dfbba325fd4ed308a6c9c6c103fed14ff13.tar.gz DotNetOpenAuth-04426dfbba325fd4ed308a6c9c6c103fed14ff13.tar.bz2 |
More warning fixes.
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); |