Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1065: Update fcntl.rs r=asomers a=kubkon Just a minor typo in the docs of `O_RDWR`. It read: ``` /// Allow both reading and writing. /// /// This should not be combined with `O_WRONLY` or `O_RDWR`. O_RDWR; ``` but I believe it should read ``` /// Allow both reading and writing. /// /// This should not be combined with `O_WRONLY` or `O_RDONLY`. O_RDWR; ``` instead :-) Co-authored-by: Jakub Konka <kubkon@jakubkonka.com>
- Loading branch information