From 1276506f6832ad0376e0ecbfc8b82f80c4293b91 Mon Sep 17 00:00:00 2001 From: Cole Reynolds Date: Sun, 10 May 2015 15:42:29 -0400 Subject: [PATCH] Fix grammar in path::Path documentation Change from "must be used with behind a pointer" to "must be used behind a pointer" --- src/libstd/path.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libstd/path.rs b/src/libstd/path.rs index 8ccc387c90277..c9c867615d225 100644 --- a/src/libstd/path.rs +++ b/src/libstd/path.rs @@ -1199,7 +1199,7 @@ impl Into 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