Skip to content

Commit

Permalink
Fix var reference in example doc
Browse files Browse the repository at this point in the history
  • Loading branch information
atifaziz committed Oct 20, 2023
1 parent 09b30f0 commit 4fcd56f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion MoreLinq/Unfold.cs
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ static partial class MoreEnumerable
/// MoreEnumerable.Unfold((Curr: 0, Next: 1),
/// s => s.Curr < 100 ? (true, s.Curr, (s.Next, s.Curr + s.Next)) : default);
/// ]]></code>
/// The <c>result</c> will be a sequence that will yield
/// The <c>fibonacciNumbersLowerThan100</c> will be a sequence that will yield
/// <c>{ 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89 }</c>.
/// </example>

Expand Down

0 comments on commit 4fcd56f

Please sign in to comment.