| ... | @@ -274,7 +274,7 @@ pub const CreateFlags = packed struct { | ... | @@ -274,7 +274,7 @@ pub const CreateFlags = packed struct { |
| 274 | read: bool = false, | 274 | read: bool = false, |
| 275 | /// If the file already exists, and is a regular file, and the access mode allows writing, it will be truncated to length 0. | 275 | /// If the file already exists, and is a regular file, and the access mode allows writing, it will be truncated to length 0. |
| 276 | truncate: bool = true, | 276 | truncate: bool = true, |
| 277 | /// Ensures that this open call creates the file, otherwise causes `error.PathAlreadyExists` to be returned. | 277 | /// Ensures that this open call creates the file, otherwise causes `error.EEXIST` to be returned. |
| 278 | exclusive: bool = false, | 278 | exclusive: bool = false, |
| 279 | /// The file system mode the file will be created with. | 279 | /// The file system mode the file will be created with. |
| 280 | mode: File.Mode = 0o666, | 280 | mode: File.Mode = 0o666, |