| Index: packages/quiver/lib/src/iterables/count.dart
|
| diff --git a/packages/quiver/lib/src/iterables/count.dart b/packages/quiver/lib/src/iterables/count.dart
|
| index 66e949a0b6f3eda3f09907ea346b848165766946..87dbfea12b6ebfd5333dfe66e446c49ea9997766 100644
|
| --- a/packages/quiver/lib/src/iterables/count.dart
|
| +++ b/packages/quiver/lib/src/iterables/count.dart
|
| @@ -14,10 +14,8 @@
|
|
|
| part of quiver.iterables;
|
|
|
| -/**
|
| - * Returns an infinite [Iterable] of [num]s, starting from [start] and
|
| - * increasing by [step].
|
| - */
|
| +/// Returns an infinite [Iterable] of [num]s, starting from [start] and
|
| +/// increasing by [step].
|
| Iterable<num> count([num start = 0, num step = 1]) => new _Count(start, step);
|
|
|
| class _Count extends InfiniteIterable<num> {
|
|
|