Skip to content

Commit 45c471b

Browse files
Fixup docs for PathBuf
1 parent d6ef1b9 commit 45c471b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

library/std/src/path.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -1154,7 +1154,7 @@ impl FusedIterator for Ancestors<'_> {}
11541154
///
11551155
/// Which method works best depends on what kind of situation you're in.
11561156
///
1157-
/// Note that `PathBuf`` does not always sanitize arguments, for example
1157+
/// Note that `PathBuf` does not always sanitize arguments, for example
11581158
/// [`push`] allows paths built from strings which include separators:
11591159
///
11601160
/// use std::path::PathBuf;
@@ -1167,7 +1167,7 @@ impl FusedIterator for Ancestors<'_> {}
11671167
/// path.push("system32");
11681168
///
11691169
/// The behaviour of `PathBuf` may be changed to a panic on such inputs
1170-
/// in the future. The [`extend`] method should be used to add multi-part paths.
1170+
/// in the future. [`Extend::extend`] should be used to add multi-part paths.
11711171
#[cfg_attr(not(test), rustc_diagnostic_item = "PathBuf")]
11721172
#[stable(feature = "rust1", since = "1.0.0")]
11731173
pub struct PathBuf {

0 commit comments

Comments
 (0)