Skip to content

Commit d2294a2

Browse files
committed
rustc: Add missing space to error message
1 parent 4370188 commit d2294a2

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/comp/middle/resolve.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1936,7 +1936,7 @@ fn check_exports(e: @env) {
19361936
fn check_enum_ok(e: @env, sp:span, id: ident, val: @indexed_mod)
19371937
-> node_id {
19381938
alt val.index.find(id) {
1939-
none { e.sess.span_fatal(sp, #fmt("error: undefined id %s\
1939+
none { e.sess.span_fatal(sp, #fmt("error: undefined id %s \
19401940
in an export", id)); }
19411941
some(ms) {
19421942
let maybe_id = list::find(ms) {|m|

0 commit comments

Comments
 (0)