about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorDan Gohman <dev@sunfishcode.online>2022-06-08 08:40:34 -0700
committerDan Gohman <dev@sunfishcode.online>2022-06-08 08:40:34 -0700
commit69594414bfac4d0ae10da65ccffad6ab4b0fa05a (patch)
tree513854ac5152923ba79eb6c62ddb77ac51b68bf5 /library/std/src
parent158ff5cdd47b72d4ef9f04c4a3145c0b74bdba25 (diff)
downloadrust-69594414bfac4d0ae10da65ccffad6ab4b0fa05a.tar.gz
rust-69594414bfac4d0ae10da65ccffad6ab4b0fa05a.zip
Fix trailing whitespace.
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/os/unix/io/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/unix/io/mod.rs b/library/std/src/os/unix/io/mod.rs
index 044cfb221b2..d1732fbfdfe 100644
--- a/library/std/src/os/unix/io/mod.rs
+++ b/library/std/src/os/unix/io/mod.rs
@@ -46,7 +46,7 @@
 //!
 //! ## `/proc/self/mem` and similar OS features
 //!
-//! Some platforms have special files, such as `/proc/self/mem`, which 
+//! Some platforms have special files, such as `/proc/self/mem`, which
 //! provide read and write access to the process's memory. Such reads
 //! and writes happen outside the control of the Rust compiler, so they do not
 //! uphold Rust's memory safety guarantees.