about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-03-15 15:40:18 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-03-15 15:40:18 +0530
commit9d8bafe7427be171a54c346afdbb7d2bcebb4316 (patch)
tree7001e307d23c19b4cbd8913ba891242e90f9ffa4 /src/libstd
parentf31d818739023cf6f7847ef8c5a9d441a49e9a51 (diff)
parent3be8380576c57409e0f06a768cfa88c5ae5e9ac5 (diff)
downloadrust-9d8bafe7427be171a54c346afdbb7d2bcebb4316.tar.gz
rust-9d8bafe7427be171a54c346afdbb7d2bcebb4316.zip
Rollup merge of #23382 - FuGangqiang:typos, r=alexcrichton
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/path.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs
index 829aaadaeb2..1d44216610b 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -86,8 +86,8 @@
 //!
 //! * Occurrences of `.` are normalized away, *except* if they are at
 //! the beginning of the path (in which case they are often meaningful
-//! in terms of path searching). So, fore xample, `a/./b`, `a/b/`,
-//! `/a/b/.` and `a/b` all ahve components `a` and `b`, but `./a/b`
+//! in terms of path searching). So, for example, `a/./b`, `a/b/`,
+//! `/a/b/.` and `a/b` all have components `a` and `b`, but `./a/b`
 //! has a leading current directory component.
 //!
 //! No other normalization takes place by default. In particular,