| ... | ... | @@ -274,7 +274,7 @@ pub const CreateFlags = packed struct { |
| 274 | 274 | read: bool = false, |
| 275 | 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 | 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 | 278 | exclusive: bool = false, |
| 279 | 279 | /// The file system mode the file will be created with. |
| 280 | 280 | mode: File.Mode = 0o666, |