Skip to content

Commit 849d89b

Browse files
committed
Small round of typo fixes
Signed-off-by: Alex Saveau <saveau.alexandre@gmail.com>
1 parent 4827cee commit 849d89b

File tree

6 files changed

+10
-9
lines changed

6 files changed

+10
-9
lines changed

library/core/src/cell.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1856,7 +1856,7 @@ impl<T: ?Sized + fmt::Display> fmt::Display for RefMut<'_, T> {
18561856
/// }
18571857
/// ```
18581858
///
1859-
/// Coverting in the other direction from a `&mut T`
1859+
/// Converting in the other direction from a `&mut T`
18601860
/// to an `&UnsafeCell<T>` is allowed:
18611861
///
18621862
/// ```rust

library/core/src/error.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ These functions are equivalent, they either return the inner value if the
4646
`Result` is `Ok` or panic if the `Result` is `Err` printing the inner error
4747
as the source. The only difference between them is that with `expect` you
4848
provide a panic error message to be printed alongside the source, whereas
49-
`unwrap` has a default message indicating only that you unwraped an `Err`.
49+
`unwrap` has a default message indicating only that you unwrapped an `Err`.
5050

5151
Of the two, `expect` is generally preferred since its `msg` field allows you
5252
to convey your intent and assumptions which makes tracking down the source

library/std/src/f32.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ impl f32 {
275275
/// This result is not an element of the function's codomain, but it is the
276276
/// closest floating point number in the real numbers and thus fulfills the
277277
/// property `self == self.div_euclid(rhs) * rhs + self.rem_euclid(rhs)`
278-
/// approximatively.
278+
/// approximately.
279279
///
280280
/// # Examples
281281
///

library/std/src/f64.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ impl f64 {
275275
/// This result is not an element of the function's codomain, but it is the
276276
/// closest floating point number in the real numbers and thus fulfills the
277277
/// property `self == self.div_euclid(rhs) * rhs + self.rem_euclid(rhs)`
278-
/// approximatively.
278+
/// approximately.
279279
///
280280
/// # Examples
281281
///

library/std/src/sys/windows/c.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -362,7 +362,7 @@ impl IO_STATUS_BLOCK {
362362

363363
pub type LPOVERLAPPED_COMPLETION_ROUTINE = unsafe extern "system" fn(
364364
dwErrorCode: DWORD,
365-
dwNumberOfBytesTransfered: DWORD,
365+
dwNumberOfBytesTransferred: DWORD,
366366
lpOverlapped: *mut OVERLAPPED,
367367
);
368368

library/std/src/sys/windows/pipe.rs

+5-4
Original file line numberDiff line numberDiff line change
@@ -324,17 +324,18 @@ impl AnonPipe {
324324
let mut async_result: Option<AsyncResult> = None;
325325
struct AsyncResult {
326326
error: u32,
327-
transfered: u32,
327+
transferred: u32,
328328
}
329329

330330
// STEP 3: The callback.
331331
unsafe extern "system" fn callback(
332332
dwErrorCode: u32,
333-
dwNumberOfBytesTransfered: u32,
333+
dwNumberOfBytesTransferred: u32,
334334
lpOverlapped: *mut c::OVERLAPPED,
335335
) {
336336
// Set `async_result` using a pointer smuggled through `hEvent`.
337-
let result = AsyncResult { error: dwErrorCode, transfered: dwNumberOfBytesTransfered };
337+
let result =
338+
AsyncResult { error: dwErrorCode, transferred: dwNumberOfBytesTransferred };
338339
*(*lpOverlapped).hEvent.cast::<Option<AsyncResult>>() = Some(result);
339340
}
340341

@@ -365,7 +366,7 @@ impl AnonPipe {
365366
// STEP 4: Return the result.
366367
// `async_result` is always `Some` at this point
367368
match result.error {
368-
c::ERROR_SUCCESS => Ok(result.transfered as usize),
369+
c::ERROR_SUCCESS => Ok(result.transferred as usize),
369370
error => Err(io::Error::from_raw_os_error(error as _)),
370371
}
371372
}

0 commit comments

Comments
 (0)