Skip to content

Commit b1d3364

Browse files
committed
Transitional change to make extfmt output lowercase module name
1 parent 6510f1c commit b1d3364

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/comp/front/extfmt.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ fn pieces_to_expr(parser p, vec[piece] pieces, vec[@ast.expr] args)
163163
fn make_path_vec(str ident) -> vec[str] {
164164
// FIXME: #fmt can't currently be used from within std
165165
// because we're explicitly referencing the 'std' crate here
166-
ret vec("std", "ExtFmt", "RT", ident);
166+
ret vec("std", "extfmt", "RT", ident);
167167
}
168168

169169
fn make_rt_path_expr(parser p, common.span sp, str ident) -> @ast.expr {

0 commit comments

Comments
 (0)