about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-03-06 09:06:03 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-03-06 22:22:37 +0530
commitae16afb9e3ea783e50d810cfac8035ad03e628a4 (patch)
tree3a88abdc5f221686fa9a703c32590f2e1a6c3bc4 /src/libstd
parent88cef035b0437b38882a48d159cfc7d9a318c095 (diff)
parenta08f12954c0cfdc0864aea9b1b958ff0b4ee222d (diff)
downloadrust-ae16afb9e3ea783e50d810cfac8035ad03e628a4.tar.gz
rust-ae16afb9e3ea783e50d810cfac8035ad03e628a4.zip
Rollup merge of #23096 - posborne:paths-documentation-grammar-fix, r=huonw
Diffstat (limited to 'src/libstd')
-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 4fd263f96c4..2b22eef44f6 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -90,7 +90,7 @@
 //! * Repeated separators are ignored: `a/b` and `a//b` both have components `a`
 //!   and `b`.
 //!
-//! * Paths ending in a separator are treated as if they has a current directory
+//! * Paths ending in a separator are treated as if they have a current directory
 //!   component at the end (or, in verbatim paths, an empty component).  For
 //!   example, while `a/b` has components `a` and `b`, the paths `a/b/` and
 //!   `a/b/.` both have components `a`, `b`, and `.` (current directory).  The