File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -550,7 +550,7 @@ impl OsString {
550
550
OsStr :: from_inner_mut ( self . inner . leak ( ) )
551
551
}
552
552
553
- /// Truncate the the `OsString` to the specified length.
553
+ /// Truncate the `OsString` to the specified length.
554
554
///
555
555
/// # Panics
556
556
/// Panics if `len` does not lie on a valid `OsStr` boundary
Original file line number Diff line number Diff line change @@ -97,7 +97,7 @@ impl PipeReader {
97
97
/// let mut jobs = vec![];
98
98
/// let (reader, mut writer) = std::pipe::pipe()?;
99
99
///
100
- /// // Write NUM_SLOT characters the the pipe.
100
+ /// // Write NUM_SLOT characters the pipe.
101
101
/// writer.write_all(&[b'|'; NUM_SLOT as usize])?;
102
102
///
103
103
/// // Spawn several processes that read a character from the pipe, do some work, then
Original file line number Diff line number Diff line change @@ -534,7 +534,7 @@ impl<T: ?Sized> Mutex<T> {
534
534
/// # Errors
535
535
///
536
536
/// If another user of this mutex panicked while holding the mutex, then
537
- /// this call will return an error containing the the underlying data
537
+ /// this call will return an error containing the underlying data
538
538
/// instead.
539
539
///
540
540
/// # Examples
You can’t perform that action at this time.
0 commit comments