1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-31 13:07:46 +00:00

ls: remove outdated comment

This commit is contained in:
Terts Diepraam 2021-04-24 13:19:50 +02:00
parent cd0b7a77b5
commit 1328d18878

View file

@ -1606,7 +1606,6 @@ fn display_file_name(path: &PathData, strip: Option<&Path>, config: &Config) ->
if config.format == Format::Long && path.file_type()?.is_symlink() {
if let Ok(target) = path.p_buf.read_link() {
// We don't bother updating width here because it's not used for long listings
name.push_str(" -> ");
name.push_str(&target.to_string_lossy());
}