Skip to content

Commit 348a32d

Browse files
authored
Fix some typos (#1865)
1 parent 6ad82c7 commit 348a32d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

CHANGELOG.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
* Fixed an issue where accepting on a UDS socket without sometime pass an address
2626
with a NULL byte to SocketAddr::from_pathname
2727
(https://github.com/tokio-rs/mio/pull/1817).
28-
* Internal cleanups that should make the `cfg` sitations easier to follow
28+
* Internal cleanups that should make the `cfg` situations easier to follow
2929
(https://github.com/tokio-rs/mio/pull/1812,
3030
https://github.com/tokio-rs/mio/pull/1813).
3131

@@ -550,7 +550,7 @@ information.
550550
- Work around Linux kernel < 2.6.37 bug on 32-bits making timeouts longer then
551551
~30 minutes effectively infinite
552552
(https://github.com/tokio-rs/mio/commit/e7cba59950e9c9fa6194e29b5b1e72029e3df455).
553-
- Update miow and net2 depedencies to get rid of invalid memory layout assumption
553+
- Update miow and net2 dependencies to get rid of invalid memory layout assumption
554554
(https://github.com/tokio-rs/mio/commit/13f02ac0a86d7c0c0001e5ff8960a0b4340d075c).
555555

556556
# 0.6.22 (May 01, 2020)

src/sys/unix/net.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ pub(crate) fn new_socket(domain: libc::c_int, socket_type: libc::c_int) -> io::R
3131

3232
let socket = syscall!(socket(domain, socket_type, 0))?;
3333

34-
// Mimick `libstd` and set `SO_NOSIGPIPE` on apple systems.
34+
// Mimic `libstd` and set `SO_NOSIGPIPE` on apple systems.
3535
#[cfg(any(
3636
target_os = "ios",
3737
target_os = "macos",

0 commit comments

Comments
 (0)