about summary refs log tree commit diff
path: root/src/libstd/path.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2015-05-05 04:47:56 +0000
committerbors <bors@rust-lang.org>2015-05-05 04:47:56 +0000
commit31e3cb7c4e8895fff23aa67e1cd6b58d798cdac4 (patch)
tree5c8ab399eb799e89b424309a7e0226242340516a /src/libstd/path.rs
parent0be117e2733423e70bccd8b0a46e8eccd1e1d1cc (diff)
parent135502ef0016fd6b17324cc1ed4e088863a97176 (diff)
downloadrust-31e3cb7c4e8895fff23aa67e1cd6b58d798cdac4.tar.gz
rust-31e3cb7c4e8895fff23aa67e1cd6b58d798cdac4.zip
Auto merge of #25111 - Manishearth:rollup, r=Manishearth
r? @Manishearth
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 2ceb60cc3aa..8ccc387c902 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -358,7 +358,7 @@ pub fn is_separator(c: char) -> bool {
     c.is_ascii() && is_sep_byte(c as u8)
 }
 
-/// The primary sperator for the current platform
+/// The primary separator for the current platform
 #[stable(feature = "rust1", since = "1.0.0")]
 pub const MAIN_SEPARATOR: char = platform::MAIN_SEP;