diff --git a/MoreLinq/Unfold.cs b/MoreLinq/Unfold.cs index 050518a51..3a7123335 100644 --- a/MoreLinq/Unfold.cs +++ b/MoreLinq/Unfold.cs @@ -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); /// ]]> - /// The result will be a sequence that will yield + /// The fibonacciNumbersLowerThan100 will be a sequence that will yield /// { 0, 1, 1, 2, 3, 5, 8, 13, 21, 34, 55, 89 }. ///