Skip to content

Commit 3a5c967

Browse files
committed
FillBackward overload missing return doc; closes #268
1 parent 37f0ffb commit 3a5c967

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

MoreLinq/FillBackward.cs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,9 @@ public static IEnumerable<T> FillBackward<T>(this IEnumerable<T> source, Func<T,
8686
/// element as well as the current element considered missing.</param>
8787
/// <typeparam name="T">Type of the elements in the source sequence.</typeparam>
8888
/// An <see cref="IEnumerable{T}"/> with missing values replaced.
89+
/// <returns>
90+
/// An <see cref="IEnumerable{T}"/> with missing elements filled.
91+
/// </returns>
8992
/// <remarks>
9093
/// This method uses deferred execution semantics and streams its
9194
/// results. If elements are missing at the end of the sequence then

0 commit comments

Comments
 (0)