]> git.lizzy.rs Git - rust.git/blobdiff - library/std/src/sys/unix/weak.rs
Remove various double spaces in source comments.
[rust.git] / library / std / src / sys / unix / weak.rs
index f92d6052cc628314bcee716d12b0d7f4fd64b9bb..62ffee70becc3d2d56ba87446d2f3b28ea290643 100644 (file)
@@ -1,9 +1,8 @@
 //! Support for "weak linkage" to symbols on Unix
 //!
-//! Some I/O operations we do in libstd require newer versions of OSes but we
-//! need to maintain binary compatibility with older releases for now. In order
-//! to use the new functionality when available we use this module for
-//! detection.
+//! Some I/O operations we do in std require newer versions of OSes but we need
+//! to maintain binary compatibility with older releases for now. In order to
+//! use the new functionality when available we use this module for detection.
 //!
 //! One option to use here is weak linkage, but that is unfortunately only
 //! really workable with ELF. Otherwise, use dlsym to get the symbol value at