Skip to content

Commit 7a6ac1c

Browse files
committed
Fix typo in crate directive evaluator.
1 parent dabccad commit 7a6ac1c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/comp/front/eval.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -412,7 +412,7 @@ impure fn eval_crate_directive(parser p,
412412
}
413413

414414
auto full_path = prefix + std.os.path_sep() + path;
415-
auto m0 = eval_crate_directives_to_mod(p, e, cdirs, path);
415+
auto m0 = eval_crate_directives_to_mod(p, e, cdirs, full_path);
416416
auto im = ast.item_mod(id, m0, p.next_def_id());
417417
auto i = @spanned(cdir.span, cdir.span, im);
418418
ast.index_item(index, i);

0 commit comments

Comments
 (0)