Skip to content

Commit

Permalink
Fix Ix.Async.Average docs wording
Browse files Browse the repository at this point in the history
  • Loading branch information
akarnokd committed Dec 6, 2019
1 parent b2b4c29 commit e9af3e3
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ static async ValueTask<double> Core(IAsyncEnumerable<int> source, CancellationTo
}

/// <summary>
/// Computes the average of an async-enumerable sequence of nullable <see cref="int" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// Computes the average of an async-enumerable sequence of <see cref="int" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// </summary>
/// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
/// <param name="source">A sequence of values to calculate the average of.</param>
Expand Down Expand Up @@ -206,7 +206,7 @@ static async ValueTask<double> Core(IAsyncEnumerable<long> source, CancellationT
}

/// <summary>
/// Computes the average of an async-enumerable sequence of nullable <see cref="long" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// Computes the average of an async-enumerable sequence of <see cref="long" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// </summary>
/// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
/// <param name="source">A sequence of values to calculate the average of.</param>
Expand Down Expand Up @@ -361,7 +361,7 @@ static async ValueTask<float> Core(IAsyncEnumerable<float> source, CancellationT
}

/// <summary>
/// Computes the average of an async-enumerable sequence of nullable <see cref="float" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// Computes the average of an async-enumerable sequence of <see cref="float" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// </summary>
/// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
/// <param name="source">A sequence of values to calculate the average of.</param>
Expand Down Expand Up @@ -516,7 +516,7 @@ static async ValueTask<double> Core(IAsyncEnumerable<double> source, Cancellatio
}

/// <summary>
/// Computes the average of an async-enumerable sequence of nullable <see cref="double" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// Computes the average of an async-enumerable sequence of <see cref="double" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// </summary>
/// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
/// <param name="source">A sequence of values to calculate the average of.</param>
Expand Down Expand Up @@ -671,7 +671,7 @@ static async ValueTask<decimal> Core(IAsyncEnumerable<decimal> source, Cancellat
}

/// <summary>
/// Computes the average of an async-enumerable sequence of nullable <see cref="decimal" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// Computes the average of an async-enumerable sequence of <see cref="decimal" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// </summary>
/// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
/// <param name="source">A sequence of values to calculate the average of.</param>
Expand Down Expand Up @@ -834,7 +834,7 @@ static async ValueTask<decimal> Core(IAsyncEnumerable<TSource> source, Func<TSou
}

/// <summary>
/// Computes the average of an async-enumerable sequence of nullable <see cref="Nullable{Int}" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// Computes the average of an async-enumerable sequence of <see cref="Nullable{Int}" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// </summary>
/// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
/// <param name="source">A sequence of values to calculate the average of.</param>
Expand Down Expand Up @@ -1021,7 +1021,7 @@ static async ValueTask<decimal> Core(IAsyncEnumerable<TSource> source, Func<TSou
}

/// <summary>
/// Computes the average of an async-enumerable sequence of nullable <see cref="Nullable{Long}" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// Computes the average of an async-enumerable sequence of <see cref="Nullable{Long}" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// </summary>
/// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
/// <param name="source">A sequence of values to calculate the average of.</param>
Expand Down Expand Up @@ -1208,7 +1208,7 @@ static async ValueTask<decimal> Core(IAsyncEnumerable<TSource> source, Func<TSou
}

/// <summary>
/// Computes the average of an async-enumerable sequence of nullable <see cref="Nullable{Float}" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// Computes the average of an async-enumerable sequence of <see cref="Nullable{Float}" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// </summary>
/// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
/// <param name="source">A sequence of values to calculate the average of.</param>
Expand Down Expand Up @@ -1395,7 +1395,7 @@ static async ValueTask<decimal> Core(IAsyncEnumerable<TSource> source, Func<TSou
}

/// <summary>
/// Computes the average of an async-enumerable sequence of nullable <see cref="Nullable{Double}" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// Computes the average of an async-enumerable sequence of <see cref="Nullable{Double}" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// </summary>
/// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
/// <param name="source">A sequence of values to calculate the average of.</param>
Expand Down Expand Up @@ -1582,7 +1582,7 @@ static async ValueTask<decimal> Core(IAsyncEnumerable<TSource> source, Func<TSou
}

/// <summary>
/// Computes the average of an async-enumerable sequence of nullable <see cref="Nullable{Decimal}" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// Computes the average of an async-enumerable sequence of <see cref="Nullable{Decimal}" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// </summary>
/// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
/// <param name="source">A sequence of values to calculate the average of.</param>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ else
}

/// <summary>
/// Computes the average of an async-enumerable sequence of nullable <see cref="<#=typeStr#>" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// Computes the average of an async-enumerable sequence of <see cref="<#=typeStr#>" /> values that are obtained by invoking a transform function on each element of the input sequence.
/// </summary>
/// <typeparam name="TSource">The type of the elements in the source sequence.</typeparam>
/// <param name="source">A sequence of values to calculate the average of.</param>
Expand Down

0 comments on commit e9af3e3

Please sign in to comment.