about summary refs log tree commit diff
path: root/src/libstd/sys
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2018-04-05 10:49:21 -0500
committerAlex Crichton <alex@alexcrichton.com>2018-04-05 11:18:17 -0700
commit71bf15c6e80f04a4ed13b502a3c79daa05ea1d40 (patch)
tree87c34ae0539061ef9a26765007fd52963d8bfe9d /src/libstd/sys
parente6947ecf4d1341d0dac1d3bd7a65b751931153cb (diff)
parent64ddb390efb2143f11c1583d52c78da5a290e097 (diff)
downloadrust-71bf15c6e80f04a4ed13b502a3c79daa05ea1d40.tar.gz
rust-71bf15c6e80f04a4ed13b502a3c79daa05ea1d40.zip
Rollup merge of #49686 - memoryleak47:typo, r=alexcrichton
typos
Diffstat (limited to 'src/libstd/sys')
-rw-r--r--src/libstd/sys/windows/pipe.rs2
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