Skip to content

Commit

Permalink
Merge pull request #526 from rust-lang-nursery/reduce-margin
Browse files Browse the repository at this point in the history
Reduce margin
  • Loading branch information
brson authored Jun 14, 2016
2 parents 59960e3 + a7158c7 commit 80731d7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/rustup-cli/term2.rs
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ impl<T: Instantiable + io::Write> Terminal<T> {
}

pub fn md<S: AsRef<str>>(&mut self, content: S) {
let mut f = LineFormatter::new(self, 0, 80);
let mut f = LineFormatter::new(self, 0, 79);
let blocks = tokenize(content.as_ref());
for b in blocks {
f.do_block(b);
Expand Down

0 comments on commit 80731d7

Please sign in to comment.