summaryrefslogtreecommitdiff
path: root/src/System.Private.CoreLib/shared/System/Threading/Tasks
diff options
context:
space:
mode:
authorStephen Toub <stoub@microsoft.com>2018-12-04 10:47:21 -0500
committerStephen Toub <stoub@microsoft.com>2018-12-04 10:47:21 -0500
commit1b3dc3356cb6acd7025d50202b7003f0244fb7ed (patch)
treeff3f6c4d0abd11fcb8ca9ca35355eca2cfc43b0b /src/System.Private.CoreLib/shared/System/Threading/Tasks
parent08d9c11bdf09837ee39aad4766091ce44e6ee837 (diff)
downloadcoreclr-1b3dc3356cb6acd7025d50202b7003f0244fb7ed.tar.gz
coreclr-1b3dc3356cb6acd7025d50202b7003f0244fb7ed.tar.bz2
coreclr-1b3dc3356cb6acd7025d50202b7003f0244fb7ed.zip
Fix lots of malformed XML comments
These are causing errors in the source.dot.net build. Turning on DocumentationFile and suppressing 1591, 1573, and 0419, Corelib builds clean after these changes.
Diffstat (limited to 'src/System.Private.CoreLib/shared/System/Threading/Tasks')
-rw-r--r--src/System.Private.CoreLib/shared/System/Threading/Tasks/TaskExtensions.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/System.Private.CoreLib/shared/System/Threading/Tasks/TaskExtensions.cs b/src/System.Private.CoreLib/shared/System/Threading/Tasks/TaskExtensions.cs
index a07033dfee..6a2b82077d 100644
--- a/src/System.Private.CoreLib/shared/System/Threading/Tasks/TaskExtensions.cs
+++ b/src/System.Private.CoreLib/shared/System/Threading/Tasks/TaskExtensions.cs
@@ -29,9 +29,9 @@ namespace System.Threading.Tasks
Task.FromCanceled(new CancellationToken(true));
}
- /// <summary>Creates a proxy <see cref="Task{TResult}"/> that represents the asynchronous operation of a <see cref="Task{Task{TResult}}"/>.</summary>
- /// <param name="task">The <see cref="Task{Task{TResult}}"/> to unwrap.</param>
- /// <returns>A <see cref="Task{TResult}"/> that represents the asynchronous operation of the provided <see cref="Task{Task{TResult}}"/>.</returns>
+ /// <summary>Creates a proxy <see cref="Task{TResult}"/> that represents the asynchronous operation of a wrapped <see cref="Task{TResult}"/>.</summary>
+ /// <param name="task">The wrapped <see cref="Task{TResult}"/> to unwrap.</param>
+ /// <returns>A <see cref="Task{TResult}"/> that represents the asynchronous operation of the provided wrapped <see cref="Task{TResult}"/>.</returns>
public static Task<TResult> Unwrap<TResult>(this Task<Task<TResult>> task)
{
if (task == null)