about summary refs log tree commit diff
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2015-05-11 23:24:18 -0400
committerSteve Klabnik <steve@steveklabnik.com>2015-05-11 23:24:18 -0400
commitf4a79c0915c960b9e91cac2962659b2f028c1a16 (patch)
treeecd4496850d1cc17a4c4739b743827900a1a5397
parent5f2482acf1d5869e29d763645f31f974cb93542c (diff)
parent1276506f6832ad0376e0ecbfc8b82f80c4293b91 (diff)
downloadrust-f4a79c0915c960b9e91cac2962659b2f028c1a16.tar.gz
rust-f4a79c0915c960b9e91cac2962659b2f028c1a16.zip
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"
-rw-r--r--src/libstd/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs
index 21f873e6877..934b3156357 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -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