Skip to content

Commit 77a0dc0

Browse files
brsongraydon
authored andcommitted
Whitespace cleanup
1 parent dbd9099 commit 77a0dc0

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/comp/front/extfmt.rs

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
/* The 'fmt' extension is modeled on the posix printf system.
2-
*
2+
*
33
* A posix conversion ostensibly looks like this:
4-
*
4+
*
55
* %[parameter][flags][width][.precision][length]type
6-
*
6+
*
77
* Given the different numeric type bestiary we have, we omit the 'length'
88
* parameter and support slightly different conversions for 'type':
9-
*
9+
*
1010
* %[parameter][flags][width][.precision]type
11-
*
11+
*
1212
* we also only support translating-to-rust a tiny subset of the possible
1313
* combinations at the moment.
1414
*/

src/comp/front/parser.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -737,7 +737,7 @@ impure fn parse_bottom_expr(parser p) -> @ast.expr {
737737
ret @spanned(lo, hi, ex);
738738
}
739739

740-
/*
740+
/*
741741
* FIXME: This is a crude approximation of the syntax-extension system,
742742
* for purposes of prototyping and/or hard-wiring any extensions we
743743
* wish to use while bootstrapping. The eventual aim is to permit

0 commit comments

Comments
 (0)