aboutsummaryrefslogtreecommitdiff
path: root/src/comp/front/extfmt.rs
diff options
context:
space:
mode:
authorMarijn Haverbeke <[email protected]>2011-05-12 18:28:34 +0200
committerMarijn Haverbeke <[email protected]>2011-05-12 21:30:43 +0200
commitb1d3364487eb647f2d7fcb412a260c960e38c73e (patch)
treef0395c70fd41517a3aaaad8210c358ea6fdefede /src/comp/front/extfmt.rs
parentChange module dereference syntax from . to :: (diff)
downloadrust-b1d3364487eb647f2d7fcb412a260c960e38c73e.tar.xz
rust-b1d3364487eb647f2d7fcb412a260c960e38c73e.zip
Transitional change to make extfmt output lowercase module name
Diffstat (limited to 'src/comp/front/extfmt.rs')
-rw-r--r--src/comp/front/extfmt.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/comp/front/extfmt.rs b/src/comp/front/extfmt.rs
index ab080024..36050e19 100644
--- a/src/comp/front/extfmt.rs
+++ b/src/comp/front/extfmt.rs
@@ -163,7 +163,7 @@ fn pieces_to_expr(parser p, vec[piece] pieces, vec[@ast.expr] args)
fn make_path_vec(str ident) -> vec[str] {
// FIXME: #fmt can't currently be used from within std
// because we're explicitly referencing the 'std' crate here
- ret vec("std", "ExtFmt", "RT", ident);
+ ret vec("std", "extfmt", "RT", ident);
}
fn make_rt_path_expr(parser p, common.span sp, str ident) -> @ast.expr {