aboutsummaryrefslogtreecommitdiff
path: root/src/comp
diff options
context:
space:
mode:
Diffstat (limited to 'src/comp')
-rw-r--r--src/comp/front/extfmt.rs10
-rw-r--r--src/comp/front/parser.rs2
2 files changed, 6 insertions, 6 deletions
diff --git a/src/comp/front/extfmt.rs b/src/comp/front/extfmt.rs
index 938704b9..dfeb79de 100644
--- a/src/comp/front/extfmt.rs
+++ b/src/comp/front/extfmt.rs
@@ -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.
*/
diff --git a/src/comp/front/parser.rs b/src/comp/front/parser.rs
index 5fe16536..50545a2f 100644
--- a/src/comp/front/parser.rs
+++ b/src/comp/front/parser.rs
@@ -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