We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 21ee2fb commit ebbac61Copy full SHA for ebbac61
src/output/mod.rs
@@ -28,13 +28,13 @@ fn symlink_filename(file: &File, colours: &Colours) -> String {
28
match file.link_target() {
29
Ok(target) => format!("{} {} {}",
30
file_colour(colours, file).paint(&file.name),
31
- colours.punctuation.paint("=>"),
+ colours.punctuation.paint("->"),
32
ANSIStrings(&[ colours.symlink_path.paint(&target.path_prefix()),
33
file_colour(colours, &target).paint(&target.name) ])),
34
35
Err(filename) => format!("{} {} {}",
36
37
- colours.broken_arrow.paint("=>"),
+ colours.broken_arrow.paint("->"),
38
colours.broken_filename.paint(&filename)),
39
}
40
0 commit comments