From acc8ec0d8dc467ec96fd052e0b3f5fa587c37e3f Mon Sep 17 00:00:00 2001 From: Peter Landoll Date: Thu, 30 Jun 2016 18:34:12 -0400 Subject: [PATCH] Issue #34076: Removing reference to removed path.prefix() function --- src/libstd/path.rs | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/libstd/path.rs b/src/libstd/path.rs index c103ff7f4b0..de23c58b3c1 100644 --- a/src/libstd/path.rs +++ b/src/libstd/path.rs @@ -1443,8 +1443,7 @@ impl Path { /// `is_absolute` and `has_root` are equivalent. /// /// * On Windows, a path is absolute if it has a prefix and starts with the - /// root: `c:\windows` is absolute, while `c:temp` and `\temp` are not. In - /// other words, `path.is_absolute() == path.prefix().is_some() && path.has_root()`. + /// root: `c:\windows` is absolute, while `c:temp` and `\temp` are not. /// /// # Examples ///