Index: sdk/lib/io/file.dart |
diff --git a/sdk/lib/io/file.dart b/sdk/lib/io/file.dart |
index b8df149594e70571482cc81944472bd90ebced54..6facf0b022d4e68f341f08f6aa3b606a69c2ceb3 100644 |
--- a/sdk/lib/io/file.dart |
+++ b/sdk/lib/io/file.dart |
@@ -175,7 +175,11 @@ const APPEND = FileMode.APPEND; |
*/ |
abstract class File extends FileSystemEntity { |
/** |
- * Create a File object. |
+ * Creates a [File] object. |
+ * |
+ * The path is either an absolute path, |
+ * or it is a relative path which is interpreted relative to the current |
+ * working directory (see [Directory.current]). |
*/ |
factory File(String path) => new _File(path); |