summary refs log tree commit diff
path: root/src/libstd/path.rs
diff options
context:
space:
mode:
authorCole Reynolds <cpjreynolds@gmail.com>2015-05-10 15:42:29 -0400
committerCole Reynolds <cpjreynolds@gmail.com>2015-05-10 15:42:29 -0400
commit1276506f6832ad0376e0ecbfc8b82f80c4293b91 (patch)
tree74ccd440df07cdd67bda76ea5199a38b111218dd /src/libstd/path.rs
parent750f2c63f2737305d33288303cdecb7a470a7922 (diff)
downloadrust-1276506f6832ad0376e0ecbfc8b82f80c4293b91.tar.gz
rust-1276506f6832ad0376e0ecbfc8b82f80c4293b91.zip
Fix grammar in path::Path documentation
Change from "must be used with behind a pointer" to "must be used behind a pointer"
Diffstat (limited to 'src/libstd/path.rs')
-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 8ccc387c902..c9c867615d2 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