Whitespace cleanup

This commit is contained in:
Brian Anderson 2011-03-01 19:51:21 -05:00 committed by Graydon Hoare
parent dbd90996ee
commit 77a0dc06a7
2 changed files with 6 additions and 6 deletions

View File

@ -1,14 +1,14 @@
/* The 'fmt' extension is modeled on the posix printf system.
*
*
* A posix conversion ostensibly looks like this:
*
*
* %[parameter][flags][width][.precision][length]type
*
*
* Given the different numeric type bestiary we have, we omit the 'length'
* parameter and support slightly different conversions for 'type':
*
*
* %[parameter][flags][width][.precision]type
*
*
* we also only support translating-to-rust a tiny subset of the possible
* combinations at the moment.
*/

View File

@ -737,7 +737,7 @@ impure fn parse_bottom_expr(parser p) -> @ast.expr {
ret @spanned(lo, hi, ex);
}
/*
/*
* FIXME: This is a crude approximation of the syntax-extension system,
* for purposes of prototyping and/or hard-wiring any extensions we
* wish to use while bootstrapping. The eventual aim is to permit