diff --git a/src/libstd/path.rs b/src/libstd/path.rs index c103ff7f4b025..de23c58b3c197 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 ///