Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
sort: fix display of verbatim blocks by using spaces, not tabs
The `use sort 'defaults';` line used only one tab before the comment; the other lines had two. This renders inconsistently depending on how much initial space is used in the output (and where the tab stops are). For example, <https://perldoc.perl.org/sort#SYNOPSIS> looked like use sort 'stable'; # guarantee stability use sort 'defaults'; # revert to default behavior no sort 'stable'; # stability not important Using spaces ensures the "#" signs are aligned everywhere.
- Loading branch information