about summary refs log tree commit diff
path: root/src/libstd/path/mod.rs
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2014-01-19 15:31:57 -0800
committerbors <bors@rust-lang.org>2014-01-19 15:31:57 -0800
commitf7cc8a625b4f405dfed8cd79dc9e59983eff3c9e (patch)
treedddc37722f21b27e556132bd1b023735a4313e85 /src/libstd/path/mod.rs
parent18061e85b79915deb9f04c78aac7b63b837432dd (diff)
parentb3c93b34f3fa81e9e2ade0cd05e0516faa7150ae (diff)
downloadrust-f7cc8a625b4f405dfed8cd79dc9e59983eff3c9e.tar.gz
rust-f7cc8a625b4f405dfed8cd79dc9e59983eff3c9e.zip
auto merge of #11643 : kballard/rust/path-root-path, r=erickt
Diffstat (limited to 'src/libstd/path/mod.rs')
-rw-r--r--src/libstd/path/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/path/mod.rs b/src/libstd/path/mod.rs
index 253d99c11eb..3ba0878b0e6 100644
--- a/src/libstd/path/mod.rs
+++ b/src/libstd/path/mod.rs
@@ -400,7 +400,7 @@ pub trait GenericPath: Clone + GenericPathUnsafe {
 
     /// Returns a Path that represents the filesystem root that `self` is rooted in.
     ///
-    /// If `self` is not absolute, or vol-relative in the case of Windows, this returns None.
+    /// If `self` is not absolute, or vol/cwd-relative in the case of Windows, this returns None.
     fn root_path(&self) -> Option<Self>;
 
     /// Pushes a path (as a byte vector or string) onto `self`.