| Index: runtime/bin/file.dart
|
| diff --git a/runtime/bin/file.dart b/runtime/bin/file.dart
|
| index a9ec181958142cc497601a87892f3f2bf350ee88..7cacd75ea675805dba6237582a3dda20db5961ea 100644
|
| --- a/runtime/bin/file.dart
|
| +++ b/runtime/bin/file.dart
|
| @@ -22,12 +22,16 @@ interface File factory _File {
|
| /**
|
| * Create the file. The [createHandler] is called when the file has
|
| * been created. The errorHandler is called if the file cannot be
|
| - * created.
|
| + * created. Existing files are left untouched by create. Calling
|
| + * create on an existing file might fail if there are restrictive
|
| + * permissions on the file.
|
| */
|
| void create();
|
|
|
| /**
|
| - * Synchronously create the file.
|
| + * Synchronously create the file. Existing files are left untouched
|
| + * by create. Calling create on an existing file might fail if there
|
| + * are restrictive permissions on the file.
|
| */
|
| void createSync();
|
|
|
|
|