# HG changeset patch # User Martin von Zweigbergk # Date 2020-01-28 18:40:19 # Node ID 732098027b34860f5fb76809b69c8251f05d3821 # Parent 5de70f798ea76b5eddd12620817af77ab79e7784 rust: re-format with nightly rustfmt This fixes test-check-rust-format.t. Differential Revision: https://phab.mercurial-scm.org/D8025 diff --git a/rust/hg-core/src/utils/hg_path.rs b/rust/hg-core/src/utils/hg_path.rs --- a/rust/hg-core/src/utils/hg_path.rs +++ b/rust/hg-core/src/utils/hg_path.rs @@ -142,22 +142,24 @@ impl HgPath { #[cfg(windows)] /// Copied from the Python stdlib's `os.path.splitdrive` implementation. /// - /// Split a pathname into drive/UNC sharepoint and relative path specifiers. - /// Returns a 2-tuple (drive_or_unc, path); either part may be empty. + /// Split a pathname into drive/UNC sharepoint and relative path + /// specifiers. Returns a 2-tuple (drive_or_unc, path); either part may + /// be empty. /// /// If you assign /// result = split_drive(p) /// It is always true that: /// result[0] + result[1] == p /// - /// If the path contained a drive letter, drive_or_unc will contain everything - /// up to and including the colon. + /// If the path contained a drive letter, drive_or_unc will contain + /// everything up to and including the colon. /// e.g. split_drive("c:/dir") returns ("c:", "/dir") /// - /// If the path contained a UNC path, the drive_or_unc will contain the host - /// name and share up to but not including the fourth directory separator - /// character. - /// e.g. split_drive("//host/computer/dir") returns ("//host/computer", "/dir") + /// If the path contained a UNC path, the drive_or_unc will contain the + /// host name and share up to but not including the fourth directory + /// separator character. + /// e.g. split_drive("//host/computer/dir") returns ("//host/computer", + /// "/dir") /// /// Paths cannot contain both a drive letter and a UNC path. pub fn split_drive<'a>(&self) -> (&HgPath, &HgPath) {