Browse Source

Fix doc comments

Oren Novotny 7 years ago
parent
commit
e3135050d0
1 changed files with 5 additions and 5 deletions
  1. 5 5
      Ix.NET/Source/System.Linq.Async/System/Linq/IAsyncPartition.cs

+ 5 - 5
Ix.NET/Source/System.Linq.Async/System/Linq/IAsyncPartition.cs

@@ -16,14 +16,14 @@ namespace System.Linq
         /// Creates a new partition that skips the specified number of elements from this sequence.
         /// Creates a new partition that skips the specified number of elements from this sequence.
         /// </summary>
         /// </summary>
         /// <param name="count">The number of elements to skip.</param>
         /// <param name="count">The number of elements to skip.</param>
-        /// <returns>An <see cref="IPartition{TElement}"/> with the first <paramref name="count"/> items removed.</returns>
+        /// <returns>An <see cref="IAsyncPartition{TElement}"/> with the first <paramref name="count"/> items removed.</returns>
         IAsyncPartition<TElement> Skip(int count);
         IAsyncPartition<TElement> Skip(int count);
 
 
         /// <summary>
         /// <summary>
         /// Creates a new partition that takes the specified number of elements from this sequence.
         /// Creates a new partition that takes the specified number of elements from this sequence.
         /// </summary>
         /// </summary>
         /// <param name="count">The number of elements to take.</param>
         /// <param name="count">The number of elements to take.</param>
-        /// <returns>An <see cref="IPartition{TElement}"/> with only the first <paramref name="count"/> items.</returns>
+        /// <returns>An <see cref="IAsyncPartition{TElement}"/> with only the first <paramref name="count"/> items.</returns>
         IAsyncPartition<TElement> Take(int count);
         IAsyncPartition<TElement> Take(int count);
 
 
         /// <summary>
         /// <summary>
@@ -31,21 +31,21 @@ namespace System.Linq
         /// </summary>
         /// </summary>
         /// <param name="index">The 0-based index to access.</param>
         /// <param name="index">The 0-based index to access.</param>
         /// <param name="cancellationToken">Token to observe for cancellation requests.</param>
         /// <param name="cancellationToken">Token to observe for cancellation requests.</param>
-        /// <returns>The element if found, otherwise, the default value of <see cref="TElement"/>.</returns>
+        /// <returns>The element if found, otherwise, the default value of <see cref="Maybe{TElement}"/>.</returns>
         Task<Maybe<TElement>> TryGetElementAsync(int index, CancellationToken cancellationToken);
         Task<Maybe<TElement>> TryGetElementAsync(int index, CancellationToken cancellationToken);
 
 
         /// <summary>
         /// <summary>
         /// Gets the first item in this sequence.
         /// Gets the first item in this sequence.
         /// </summary>
         /// </summary>
         /// <param name="cancellationToken">Token to observe for cancellation requests.</param>
         /// <param name="cancellationToken">Token to observe for cancellation requests.</param>
-        /// <returns>The element if found, otherwise, the default value of <see cref="TElement"/>.</returns>
+        /// <returns>The element if found, otherwise, the default value of <see cref="Maybe{TElement}"/>.</returns>
         Task<Maybe<TElement>> TryGetFirstAsync(CancellationToken cancellationToken);
         Task<Maybe<TElement>> TryGetFirstAsync(CancellationToken cancellationToken);
 
 
         /// <summary>
         /// <summary>
         /// Gets the last item in this sequence.
         /// Gets the last item in this sequence.
         /// </summary>
         /// </summary>
         /// <param name="cancellationToken">Token to observe for cancellation requests.</param>
         /// <param name="cancellationToken">Token to observe for cancellation requests.</param>
-        /// <returns>The element if found, otherwise, the default value of <see cref="TElement"/>.</returns>
+        /// <returns>The element if found, otherwise, the default value of <see cref="Maybe{TElement}"/>.</returns>
         Task<Maybe<TElement>> TryGetLastAsync(CancellationToken cancellationToken);
         Task<Maybe<TElement>> TryGetLastAsync(CancellationToken cancellationToken);
     }
     }
 }
 }