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

Unified Diff: sdk/lib/js_util/dartium/js_util_dartium.dart

Issue 2311563002: dart:js_util - fix spelling (Closed)
Patch Set: dart:js_util - fix spelling Created 4 years, 3 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/js_util/dart2js/js_util_dart2js.dart ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/js_util/dartium/js_util_dartium.dart
diff --git a/sdk/lib/js_util/dartium/js_util_dartium.dart b/sdk/lib/js_util/dartium/js_util_dartium.dart
index 5f1226d66733e18ddd7e480a381065671a7a8482..77386dccf778c5095a0af0986618079203605cb0 100644
--- a/sdk/lib/js_util/dartium/js_util_dartium.dart
+++ b/sdk/lib/js_util/dartium/js_util_dartium.dart
@@ -11,7 +11,7 @@ library dart.js_util;
import 'dart:js';
-/// WARNING: performance of this method is much worse than other uitil
+/// WARNING: performance of this method is much worse than other util
/// methods in this library. Only use this method as a last resort.
///
/// Recursively converts a JSON-like collection of Dart objects to a
@@ -19,7 +19,7 @@ import 'dart:js';
///
/// [object] must be a [Map] or [Iterable], the contents of which are also
/// converted. Maps and Iterables are copied to a new JavaScript object.
-/// Primitives and other transferrable values are directly converted to their
+/// Primitives and other transferable values are directly converted to their
/// JavaScript type, and all other objects are proxied.
jsify(object) {
if ((object is! Map) && (object is! Iterable)) {
« no previous file with comments | « sdk/lib/js_util/dart2js/js_util_dart2js.dart ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698