rustc: Add missing space to error message

This commit is contained in:
Brian Anderson 2012-02-18 14:04:24 -08:00
parent 4370188055
commit d2294a2d99

View File

@ -1936,7 +1936,7 @@ fn check_exports(e: @env) {
fn check_enum_ok(e: @env, sp:span, id: ident, val: @indexed_mod)
-> node_id {
alt val.index.find(id) {
none { e.sess.span_fatal(sp, #fmt("error: undefined id %s\
none { e.sess.span_fatal(sp, #fmt("error: undefined id %s \
in an export", id)); }
some(ms) {
let maybe_id = list::find(ms) {|m|