1
Fork 0

Rollup merge of #25278 - cpjreynolds:path-doc, r=alexcrichton

Change from "must be used with behind a pointer" to "must be used behind a pointer"
This commit is contained in:
Steve Klabnik 2015-05-11 23:24:18 -04:00
commit f4a79c0915

View file

@ -1199,7 +1199,7 @@ impl Into<OsString> for PathBuf {
/// absolute, and so on. More details about the overall approach can be found in /// absolute, and so on. More details about the overall approach can be found in
/// the module documentation. /// the module documentation.
/// ///
/// This is an *unsized* type, meaning that it must always be used with behind a /// This is an *unsized* type, meaning that it must always be used behind a
/// pointer like `&` or `Box`. /// pointer like `&` or `Box`.
/// ///
/// # Examples /// # Examples