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

Unified Diff: sdk/lib/io/file.dart

Issue 2655883002: fix spelling in core libraries (Closed)
Patch Set: while I’m at it… Created 3 years, 11 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/symbol.dart ('k') | sdk/lib/io/file_system_entity.dart » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: sdk/lib/io/file.dart
diff --git a/sdk/lib/io/file.dart b/sdk/lib/io/file.dart
index 73668e937b2df940e4c9084dcf446b2dc8193d68..cb9cdcc8e80fbc45af9bd8d340d632d7b0a5ccee 100644
--- a/sdk/lib/io/file.dart
+++ b/sdk/lib/io/file.dart
@@ -114,7 +114,7 @@ enum FileLock {
* data into the required format or to prepare it for output.
*
* You might want to use a stream to read large files,
- * to manipulate the data with tranformers,
+ * to manipulate the data with transformers,
* or for compatibility with another API, such as [WebSocket]s.
*
* import 'dart:io';
@@ -586,7 +586,7 @@ abstract class RandomAccessFile {
* the bytes will be filled into [buffer] from at index [start], otherwise
* index 0. If [end] is present, the [end] - [start] bytes will be read into
* [buffer], otherwise up to [buffer.length]. If [end] == [start] nothing
- * happends.
+ * happens.
*
* Returns a [:Future<int>:] that completes with the number of bytes read.
*/
@@ -597,7 +597,7 @@ abstract class RandomAccessFile {
* is present, the bytes will be filled into [buffer] from at index [start],
* otherwise index 0. If [end] is present, the [end] - [start] bytes will be
* read into [buffer], otherwise up to [buffer.length]. If [end] == [start]
- * nothing happends.
+ * nothing happens.
*
* Throws a [FileSystemException] if the operation fails.
*/
« no previous file with comments | « sdk/lib/internal/symbol.dart ('k') | sdk/lib/io/file_system_entity.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698