Skip to content

Commit

Permalink
Merge pull request #3577 from cakebaker/remove_empty_line_from_error_…
Browse files Browse the repository at this point in the history
…message

expand: remove empty line from error message
  • Loading branch information
tertsdiepraam authored May 30, 2022
2 parents 7861cc9 + df2507b commit 2516610
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/uu/expand/src/expand.rs
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ fn tabstops_parse(s: &str) -> (RemainingMode, Vec<usize>) {

// Tab size must be positive.
if num == 0 {
crash!(1, "{}\n", "tab size cannot be 0");
crash!(1, "tab size cannot be 0");
}

// Tab sizes must be ascending.
Expand Down

0 comments on commit 2516610

Please sign in to comment.