Minor fix to whitespace in libsyntax

This commit is contained in:
Erick Tryzelaar 2015-12-23 11:51:03 -05:00
parent 4ce1dafd1d
commit 835bc77169

View File

@ -856,8 +856,8 @@ impl<'a> State<'a> {
indented: usize) -> io::Result<()> {
self.bclose_maybe_open(span, indented, true)
}
pub fn bclose_maybe_open (&mut self, span: codemap::Span,
indented: usize, close_box: bool) -> io::Result<()> {
pub fn bclose_maybe_open(&mut self, span: codemap::Span,
indented: usize, close_box: bool) -> io::Result<()> {
try!(self.maybe_print_comment(span.hi));
try!(self.break_offset_if_not_bol(1, -(indented as isize)));
try!(word(&mut self.s, "}"));