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

Unified Diff: sdk/lib/convert/base64.dart

Issue 2946283002: Fix a couple of doc comment references - and many spelling mistakes (Closed)
Patch Set: Created 3 years, 6 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/collection/iterable.dart ('k') | sdk/lib/convert/json.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/convert/base64.dart
diff --git a/sdk/lib/convert/base64.dart b/sdk/lib/convert/base64.dart
index 09a35ce010d96f7286e5f00d36b9cec43c39f1d4..8414e5cf0d0d339bb5d28af5bd2979f14961b347 100644
--- a/sdk/lib/convert/base64.dart
+++ b/sdk/lib/convert/base64.dart
@@ -396,7 +396,7 @@ class _BufferCachingBase64Encoder extends _Base64Encoder {
if (bufferCache == null || bufferCache.length < bufferLength) {
bufferCache = new Uint8List(bufferLength);
}
- // Return a view of the buffer, so it has the reuested length.
+ // Return a view of the buffer, so it has the requested length.
return new Uint8List.view(bufferCache.buffer, 0, bufferLength);
}
}
@@ -542,7 +542,7 @@ class _Base64Decoder {
* contains six bits per seen character.
*
* If padding has been seen the value is negative. It's the bitwise negation
- * of the number of remanining allowed padding characters (always ~0 or ~1).
+ * of the number of remaining allowed padding characters (always ~0 or ~1).
*
* A state of `0` or `~0` are valid places to end decoding, all other values
* mean that a four-character block has not been completed.
« no previous file with comments | « sdk/lib/collection/iterable.dart ('k') | sdk/lib/convert/json.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698