diff options
| author | memoryleak47 <memoryleak47@protonmail.ch> | 2018-04-05 13:04:00 +0200 |
|---|---|---|
| committer | memoryleak47 <memoryleak47@protonmail.ch> | 2018-04-05 13:04:00 +0200 |
| commit | 64ddb390efb2143f11c1583d52c78da5a290e097 (patch) | |
| tree | b3326301ab1eb33deb4a8f4fc14063270544ddcf /src/libstd/sys | |
| parent | 4be5d360cd8a9338d1408b3998874313240db395 (diff) | |
| download | rust-64ddb390efb2143f11c1583d52c78da5a290e097.tar.gz rust-64ddb390efb2143f11c1583d52c78da5a290e097.zip | |
typos
Diffstat (limited to 'src/libstd/sys')
| -rw-r--r-- | src/libstd/sys/windows/pipe.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/sys/windows/pipe.rs b/src/libstd/sys/windows/pipe.rs index f3b1185c6ea..df1dd7401af 100644 --- a/src/libstd/sys/windows/pipe.rs +++ b/src/libstd/sys/windows/pipe.rs @@ -236,7 +236,7 @@ enum State { impl<'a> AsyncPipe<'a> { fn new(pipe: Handle, dst: &'a mut Vec<u8>) -> io::Result<AsyncPipe<'a>> { // Create an event which we'll use to coordinate our overlapped - // opreations, this event will be used in WaitForMultipleObjects + // operations, this event will be used in WaitForMultipleObjects // and passed as part of the OVERLAPPED handle. // // Note that we do a somewhat clever thing here by flagging the |
