Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(154)

Unified Diff: packages/quiver/lib/src/iterables/partition.dart

Issue 2989763002: Update charted to 0.4.8 and roll (Closed)
Patch Set: Removed Cutch from list of reviewers Created 3 years, 5 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « packages/quiver/lib/src/iterables/min_max.dart ('k') | packages/quiver/lib/src/iterables/range.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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);
}
« no previous file with comments | « packages/quiver/lib/src/iterables/min_max.dart ('k') | packages/quiver/lib/src/iterables/range.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698