1
Fork 0

Fix grammar in path::Path documentation

Change from "must be used with behind a pointer" to "must be used behind a pointer"
This commit is contained in:
Cole Reynolds 2015-05-10 15:42:29 -04:00
parent 750f2c63f2
commit 1276506f68

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
/// 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`.
///
/// # Examples