diff options
author | Birte Kristina Friesel <derf@finalrewind.org> | 2025-01-04 21:13:15 +0100 |
---|---|---|
committer | Birte Kristina Friesel <derf@finalrewind.org> | 2025-01-04 21:13:15 +0100 |
commit | eca26bdf4b0082a852638997534a85d30d4187f2 (patch) | |
tree | 37b79620cecb048c94e0c1f663a406427b4b6dde /bin | |
parent | c1d880d84e93d5c60098b2e3de909a950b78023c (diff) |
Consistently use id_num and id_code accessor names for stop IDs
Diffstat (limited to 'bin')
-rwxr-xr-x | bin/efa-m | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -330,7 +330,8 @@ sub show_coord { sub show_stopfinder { my $max_len = max map { length( $_->full_name ) } $efa->results; for my $stop ( $efa->results ) { - printf( "%-${max_len}s %s\n", $stop->full_name, $stop->id ); + printf( "%-${max_len}s %s %s\n", + $stop->full_name, $stop->id_num, $stop->id_code ); } } |