| Index: packages/quiver/lib/src/iterables/partition.dart
|
| diff --git a/packages/quiver/lib/src/iterables/partition.dart b/packages/quiver/lib/src/iterables/partition.dart
|
| index cb964433998dd2bb94dea22e0996021063e0ae33..e9fb818ff7288451828aff2acf1843d94ed79676 100644
|
| --- a/packages/quiver/lib/src/iterables/partition.dart
|
| +++ b/packages/quiver/lib/src/iterables/partition.dart
|
| @@ -14,9 +14,7 @@
|
|
|
| part of quiver.iterables;
|
|
|
| -/**
|
| - * Partitions the input iterable into lists of the specified size.
|
| - */
|
| +/// Partitions the input iterable into lists of the specified size.
|
| Iterable<List> partition(Iterable iterable, int size) {
|
| return iterable.isEmpty ? [] : new _Partition(iterable, size);
|
| }
|
|
|