File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 1
1
/* The 'fmt' extension is modeled on the posix printf system.
2
- *
2
+ *
3
3
* A posix conversion ostensibly looks like this:
4
- *
4
+ *
5
5
* %[parameter][flags][width][.precision][length]type
6
- *
6
+ *
7
7
* Given the different numeric type bestiary we have, we omit the 'length'
8
8
* parameter and support slightly different conversions for 'type':
9
- *
9
+ *
10
10
* %[parameter][flags][width][.precision]type
11
- *
11
+ *
12
12
* we also only support translating-to-rust a tiny subset of the possible
13
13
* combinations at the moment.
14
14
*/
Original file line number Diff line number Diff line change @@ -737,7 +737,7 @@ impure fn parse_bottom_expr(parser p) -> @ast.expr {
737
737
ret @spanned ( lo, hi, ex) ;
738
738
}
739
739
740
- /*
740
+ /*
741
741
* FIXME: This is a crude approximation of the syntax-extension system,
742
742
* for purposes of prototyping and/or hard-wiring any extensions we
743
743
* wish to use while bootstrapping. The eventual aim is to permit
You can’t perform that action at this time.
0 commit comments