| Index: packages/quiver_iterables/lib/src/concat.dart
|
| diff --git a/packages/quiver/lib/src/iterables/concat.dart b/packages/quiver_iterables/lib/src/concat.dart
|
| similarity index 83%
|
| copy from packages/quiver/lib/src/iterables/concat.dart
|
| copy to packages/quiver_iterables/lib/src/concat.dart
|
| index b4ab751adb549fe9debce9535a0f780233f14472..e32c26902cdf52bd053604b927502905dc68c0d4 100644
|
| --- a/packages/quiver/lib/src/iterables/concat.dart
|
| +++ b/packages/quiver_iterables/lib/src/concat.dart
|
| @@ -14,9 +14,7 @@
|
|
|
| part of quiver.iterables;
|
|
|
| -/**
|
| - * Returns the concatentation of the input iterables.
|
| - *
|
| - * The returned iterable is a lazily-evaluated view on the input iterables.
|
| - */
|
| +/// Returns the concatentation of the input iterables.
|
| +///
|
| +/// The returned iterable is a lazily-evaluated view on the input iterables.
|
| Iterable concat(Iterable<Iterable> iterables) => iterables.expand((x) => x);
|
|
|