about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorPaul Osborne <osbpau@gmail.com>2015-03-05 19:11:59 -0600
committerPaul Osborne <osbpau@gmail.com>2015-03-05 19:11:59 -0600
commita08f12954c0cfdc0864aea9b1b958ff0b4ee222d (patch)
tree9375c3065a991cc65071ec4f75b1f522b5a2f799 /src/libstd
parentb0746ff19b3bc204215f04bbb5756159f9bc5c92 (diff)
downloadrust-a08f12954c0cfdc0864aea9b1b958ff0b4ee222d.tar.gz
rust-a08f12954c0cfdc0864aea9b1b958ff0b4ee222d.zip
fix minor grammar mistake in paths documentation
Diffstat (limited to 'src/libstd')
-rwxr-xr-xsrc/libstd/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs
index b85a0dcec81..af3cf57082d 100755
--- 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