]> git.lizzy.rs Git - rust.git/blobdiff - library/std/src/sys/unix/kernel_copy.rs
Rollup merge of #102766 - thomcc:remove-resolv, r=Mark-Simulacrum
[rust.git] / library / std / src / sys / unix / kernel_copy.rs
index 8f7abb55e237644ef0b03d90c6b58cc09ec20dbd..94546ca09d00d859bdf3863eb4cead3f9223d120 100644 (file)
@@ -20,7 +20,7 @@
 //! Since those syscalls have requirements that cannot be fully checked in advance and
 //! gathering additional information about file descriptors would require additional syscalls
 //! anyway it simply attempts to use them one after another (guided by inaccurate hints) to
-//! figure out which one works and and falls back to the generic read-write copy loop if none of them
+//! figure out which one works and falls back to the generic read-write copy loop if none of them
 //! does.
 //! Once a working syscall is found for a pair of file descriptors it will be called in a loop
 //! until the copy operation is completed.