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

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

Issue 2856123003: Fix some bad documentation links. (Closed)
Patch Set: Created 3 years, 8 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 | « sdk/lib/core/invocation.dart ('k') | sdk/lib/core/num.dart » ('j') | 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 18ec4d131828f50de12f5ccd7b428534d0e5aa73..397d9192d24947ec551e3c9343412ec7db97a500 100644
--- a/sdk/lib/core/iterable.dart
+++ b/sdk/lib/core/iterable.dart
@@ -75,7 +75,7 @@ part of dart.core;
*
* Since an iterable may be iterated more than once, it's not recommended to
* have detectable side-effects in the iterator.
- * For methods like [map] and [while], the returned iterable will execute the
+ * For methods like [map] and [where], the returned iterable will execute the
* argument function on every iteration, so those functions should also not
* have side effects.
*/
@@ -207,7 +207,7 @@ abstract class Iterable<E> {
*
* Some types of iterable may have a different equality used for its elements.
* For example, a [Set] may have a custom equality
- * (see [Set.identical]) that its `contains` uses.
+ * (see [Set.identity]) that its `contains` uses.
* Likewise the `Iterable` returned by a [Map.keys] call
* should use the same equality that the `Map` uses for keys.
*/
« no previous file with comments | « sdk/lib/core/invocation.dart ('k') | sdk/lib/core/num.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698