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

Unified Diff: sdk/lib/internal/list.dart

Issue 1076013006: Improve return type of markUnmodifiableList to JSArray instead of List. (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Fix bad change. Created 5 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/_internal/compiler/js_lib/js_array.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/internal/list.dart
diff --git a/sdk/lib/internal/list.dart b/sdk/lib/internal/list.dart
index 8fe02c4736e75334939e0ba7844735bd1961157d..e642fb77e34eb0361c98edd4ee7dae006b05c450 100644
--- a/sdk/lib/internal/list.dart
+++ b/sdk/lib/internal/list.dart
@@ -361,7 +361,7 @@ abstract class NonGrowableListError {
* That means that it is a destructive conversion.
* The original list should not be used afterwards.
*
- * The returned list may be the same list as the orginal,
+ * The returned list may be the same list as the original,
* or it may be a different list (according to [identical]).
* The original list may have changed type to be a fixed list,
* or become empty or been otherwise modified.
@@ -387,6 +387,6 @@ external List makeListFixedLength(List growableList);
* That means that it is a destructive conversion.
* The original list should not be used afterwards.
*
- * The unmodifialbe list type is similar to the one used by const lists.
+ * The unmodifiable list type is similar to the one used by const lists.
*/
external List makeFixedListUnmodifiable(List fixedLengthList);
« no previous file with comments | « sdk/lib/_internal/compiler/js_lib/js_array.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698