diff options
| author | Matthias Krüger <matthias.krueger@famsik.de> | 2022-09-23 15:40:23 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-23 15:40:23 +0200 |
| commit | dfe045ad71982fb6ae134fdb8fff0f924764fbc1 (patch) | |
| tree | 82451adea5e10974cb94c5760314975bcf05f335 | |
| parent | 6d6d89b08ba3f2022af3a5b8b57e3349beb270d7 (diff) | |
| parent | a0eb46788aa273598fb895d782ae417ed9d14950 (diff) | |
| download | rust-dfe045ad71982fb6ae134fdb8fff0f924764fbc1.tar.gz rust-dfe045ad71982fb6ae134fdb8fff0f924764fbc1.zip | |
Rollup merge of #102177 - inquisitivecrystal:std-doc-typo, r=Dylan-DPC
Fix a typo in `std`'s root docs Remarkably, this typo has been present for *seven years.* I was so surprised that I reread the text five times and then asked people on the rust Zulip to double-check. :)
| -rw-r--r-- | library/std/src/lib.rs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/library/std/src/lib.rs b/library/std/src/lib.rs index 07b40f64ac2..3131dd47269 100644 --- a/library/std/src/lib.rs +++ b/library/std/src/lib.rs @@ -145,8 +145,8 @@ //! abstracting over differences in common platforms, most notably Windows and //! Unix derivatives. //! -//! Common types of I/O, including [files], [TCP], [UDP], are defined in the -//! [`io`], [`fs`], and [`net`] modules. +//! Common types of I/O, including [files], [TCP], and [UDP], are defined in +//! the [`io`], [`fs`], and [`net`] modules. //! //! The [`thread`] module contains Rust's threading abstractions. [`sync`] //! contains further primitive shared memory types, including [`atomic`] and |
