File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -378,7 +378,7 @@ extern crate compiler_builtins;
378
378
// During testing, this crate is not actually the "real" std library, but rather
379
379
// it links to the real std library, which was compiled from this same source
380
380
// code. So any lang items std defines are conditionally excluded (or else they
381
- // wolud generate duplicate lang item errors), and any globals it defines are
381
+ // would generate duplicate lang item errors), and any globals it defines are
382
382
// _not_ the globals used by "real" std. So this import, defined only during
383
383
// testing gives test-std access to real-std lang items and globals. See #2912
384
384
#[ cfg( test) ] extern crate std as realstd;
Original file line number Diff line number Diff line change @@ -188,7 +188,7 @@ pub struct AssertUnwindSafe<T>(
188
188
// * By default everything is unwind safe
189
189
// * pointers T contains mutability of some form are not unwind safe
190
190
// * Unique, an owning pointer, lifts an implementation
191
- // * Types like Mutex/RwLock which are explicilty poisoned are unwind safe
191
+ // * Types like Mutex/RwLock which are explicitly poisoned are unwind safe
192
192
// * Our custom AssertUnwindSafe wrapper is indeed unwind safe
193
193
194
194
#[ stable( feature = "catch_unwind" , since = "1.9.0" ) ]
Original file line number Diff line number Diff line change @@ -236,7 +236,7 @@ enum State {
236
236
impl < ' a > AsyncPipe < ' a > {
237
237
fn new ( pipe : Handle , dst : & ' a mut Vec < u8 > ) -> io:: Result < AsyncPipe < ' a > > {
238
238
// Create an event which we'll use to coordinate our overlapped
239
- // opreations , this event will be used in WaitForMultipleObjects
239
+ // operations , this event will be used in WaitForMultipleObjects
240
240
// and passed as part of the OVERLAPPED handle.
241
241
//
242
242
// Note that we do a somewhat clever thing here by flagging the
You can’t perform that action at this time.
0 commit comments