Skip to content

Commit 3b478f0

Browse files
committed
Clearer format
1 parent 24eccbf commit 3b478f0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

crates/ark/src/url.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ fn uppercase_windows_drive_in_uri(mut uri: Url) -> Url {
7979
let upper = drive.to_ascii_uppercase();
8080

8181
if drive != upper {
82-
let new_path = format!("/{upper}{}", &path[2..]);
82+
let new_path = format!("/{upper}:{}", &path[3..]);
8383
uri.set_path(&new_path);
8484
}
8585

0 commit comments

Comments
 (0)