diff options
| author | klensy <klensy@users.noreply.github.com> | 2022-06-08 21:07:59 +0300 |
|---|---|---|
| committer | klensy <klensy@users.noreply.github.com> | 2022-06-16 14:40:29 +0300 |
| commit | 989d1a732f194d852e9a3636fc283c65612f995f (patch) | |
| tree | f530eaa413fae5cc347e3c0f22d31b6ae2aabf39 /compiler/rustc_errors | |
| parent | 0ff8ae3111939a30d61f158b53e120f965989520 (diff) | |
| download | rust-989d1a732f194d852e9a3636fc283c65612f995f.tar.gz rust-989d1a732f194d852e9a3636fc283c65612f995f.zip | |
fix one more case of trailing space
Diffstat (limited to 'compiler/rustc_errors')
| -rw-r--r-- | compiler/rustc_errors/src/emitter.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_errors/src/emitter.rs b/compiler/rustc_errors/src/emitter.rs index 5f0ad42c17a..06a1a31c672 100644 --- a/compiler/rustc_errors/src/emitter.rs +++ b/compiler/rustc_errors/src/emitter.rs @@ -819,7 +819,7 @@ impl EmitterWriter { } buffer.puts(line_offset, 0, &self.maybe_anonymized(line_index), Style::LineNumber); - draw_col_separator(buffer, line_offset, width_offset - 2); + draw_col_separator_no_space(buffer, line_offset, width_offset - 2); } fn render_source_line( |
