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

Unified Diff: sdk/lib/io/file.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/io/directory.dart ('k') | sdk/lib/io/http.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 045972fa9ac5b0d5a06de5f84fc4f25186262ccd..9acfdcbd70f3b51d166e52b687a077c426c255bd 100644
--- a/sdk/lib/io/file.dart
+++ b/sdk/lib/io/file.dart
@@ -160,8 +160,8 @@ enum FileLock {
* }
*
* You can also write to a file using a [Stream]. Open the file with
- * [openWrite], which returns a stream to which you can write data.
- * Be sure to close the file with the [close] method.
+ * [openWrite], which returns an [IOSink] to which you can write data.
+ * Be sure to close the sink with the [IOSink.close] method.
*
* import 'dart:io';
*
@@ -343,14 +343,14 @@ abstract class File implements FileSystemEntity {
/**
* Modifies the time the file was last accessed.
*
- * Throws a [FilsSystemException] if the time cannot be set.
+ * Throws a [FileSystemException] if the time cannot be set.
*/
Future setLastAccessed(DateTime time);
/**
* Synchronously modifies the time the file was last accessed.
*
- * Throws a [FilsSystemException] if the time cannot be set.
+ * Throws a [FileSystemException] if the time cannot be set.
*/
void setLastAccessedSync(DateTime time);
@@ -378,7 +378,7 @@ abstract class File implements FileSystemEntity {
/**
* Modifies the time the file was last modified.
*
- * Throws a [FilsSystemException] if the time cannot be set.
+ * Throws a [FileSystemException] if the time cannot be set.
*/
Future setLastModified(DateTime time);
« no previous file with comments | « sdk/lib/io/directory.dart ('k') | sdk/lib/io/http.dart » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698