about summary refs log tree commit diff
path: root/library/std/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2023-12-26 08:22:57 +0000
committerbors <bors@rust-lang.org>2023-12-26 08:22:57 +0000
commita815c3b69c527c268015f017a88d88331f150a02 (patch)
tree6537c17517f50182d6b7340f29767d59fc12e868 /library/std/src
parentf6456285ddca7db0ffc663d02d9ecaf22d1f0d82 (diff)
parentf7dc91f25f485c47cfd3b2902e18577d332db76a (diff)
downloadrust-a815c3b69c527c268015f017a88d88331f150a02.tar.gz
rust-a815c3b69c527c268015f017a88d88331f150a02.zip
Auto merge of #119313 - matthiaskrgr:rollup-41x48j6, r=matthiaskrgr
Rollup of 3 pull requests

Successful merges:

 - #119287 (Fix doc typo for read_exact_at)
 - #119294 (fix `./configure --set change-id`)
 - #119303 (Update sysinfo)

r? `@ghost`
`@rustbot` modify labels: rollup
Diffstat (limited to 'library/std/src')
-rw-r--r--library/std/src/os/unix/fs.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/std/src/os/unix/fs.rs b/library/std/src/os/unix/fs.rs
index 0eb4e88cfad..e995d5133f8 100644
--- a/library/std/src/os/unix/fs.rs
+++ b/library/std/src/os/unix/fs.rs
@@ -68,7 +68,7 @@ pub trait FileExt {
         io::default_read_vectored(|b| self.read_at(b, offset), bufs)
     }
 
-    /// Reads the exact number of byte required to fill `buf` from the given offset.
+    /// Reads the exact number of bytes required to fill `buf` from the given offset.
     ///
     /// The offset is relative to the start of the file and thus independent
     /// from the current cursor.