Skip to content

Commit

Permalink
print: reduce the max line width to 100 (from 120).
Browse files Browse the repository at this point in the history
  • Loading branch information
eddyb committed Mar 31, 2023
1 parent d2d9cbd commit 65c67b7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/print/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -466,7 +466,7 @@ impl Visit for AllCxInterned {
}

// FIXME(eddyb) make max line width configurable.
const MAX_LINE_WIDTH: usize = 120;
const MAX_LINE_WIDTH: usize = 100;

impl Plan<'_> {
#[allow(rustdoc::private_intra_doc_links)]
Expand Down

0 comments on commit 65c67b7

Please sign in to comment.