diff options
| author | Alexander Regueiro <alexreg@me.com> | 2019-02-09 22:16:58 +0000 |
|---|---|---|
| committer | Alexander Regueiro <alexreg@me.com> | 2019-03-11 02:25:44 +0000 |
| commit | 8629fd3e4e5184852352ea1bb18bb1c8465ffac3 (patch) | |
| tree | f6e2daab2a2584e18b8989a89a160ab27c6e548b /src/libstd/sys/windows | |
| parent | 9d71ec1358ac063fe6ff1eaed0ba6ed3cedde610 (diff) | |
| download | rust-8629fd3e4e5184852352ea1bb18bb1c8465ffac3.tar.gz rust-8629fd3e4e5184852352ea1bb18bb1c8465ffac3.zip | |
Improvements to comments in libstd, libcore, liballoc.
Diffstat (limited to 'src/libstd/sys/windows')
| -rw-r--r-- | src/libstd/sys/windows/pipe.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/sys/windows/pipe.rs b/src/libstd/sys/windows/pipe.rs index 07f4f5f0e58..b38727830f3 100644 --- a/src/libstd/sys/windows/pipe.rs +++ b/src/libstd/sys/windows/pipe.rs @@ -37,9 +37,9 @@ pub struct Pipes { /// /// The ours/theirs pipes are *not* specifically readable or writable. Each /// one only supports a read or a write, but which is which depends on the -/// boolean flag given. If `ours_readable` is true then `ours` is readable where -/// `theirs` is writable. Conversely if `ours_readable` is false then `ours` is -/// writable where `theirs` is readable. +/// boolean flag given. If `ours_readable` is `true`, then `ours` is readable and +/// `theirs` is writable. Conversely, if `ours_readable` is `false`, then `ours` +/// is writable and `theirs` is readable. /// /// Also note that the `ours` pipe is always a handle opened up in overlapped /// mode. This means that technically speaking it should only ever be used |
