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

Unified Diff: sdk/lib/core/iterable.dart

Issue 1441823002: fix typo in Iterable.expand docs (Closed) Base URL: git@github.com:dart-lang/sdk.git@master
Patch Set: Created 5 years, 1 month 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/core/iterable.dart
diff --git a/sdk/lib/core/iterable.dart b/sdk/lib/core/iterable.dart
index 78efa1b5ca5200c8577625ef9dcbc33143d1ee40..a327b6d54be396b97883c4d96c65764b90d610c9 100644
--- a/sdk/lib/core/iterable.dart
+++ b/sdk/lib/core/iterable.dart
@@ -174,7 +174,7 @@ abstract class Iterable<E> {
Iterable<E> where(bool f(E element)) => new WhereIterable<E>(this, f);
/**
- * Expands each element of this [Iterable]into zero or more elements.
+ * Expands each element of this [Iterable] into zero or more elements.
*
* The resulting Iterable runs through the elements returned
* by [f] for each element of this, in iteration order.
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698