From 75967cdad508c8410b4967d41c92fe982d660987 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Florian=20Spie=C3=9F?= Date: Wed, 6 Jul 2022 11:57:58 +0200 Subject: [PATCH] Fix typo in file descriptor docs --- library/std/src/os/fd/raw.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/library/std/src/os/fd/raw.rs b/library/std/src/os/fd/raw.rs index 345beb1824dfa..ff4e25b792ad0 100644 --- a/library/std/src/os/fd/raw.rs +++ b/library/std/src/os/fd/raw.rs @@ -73,7 +73,7 @@ pub trait FromRawFd { /// /// # Safety /// - /// The `fd` passed in must be a valid an open file descriptor. + /// The `fd` passed in must be a valid and open file descriptor. /// /// # Example ///