Use backticks to delineate paths/identifiers

This commit is contained in:
Corey Richardson 2013-05-13 06:22:32 -04:00
parent be82449a9a
commit 2210d2d5d5

View File

@ -2505,8 +2505,8 @@ pub impl Resolver {
*segment_name));
return Failed;
}
self.session.span_err(span, fmt!("unresolved import: could not find %s in %s.",
*segment_name, module_name));
self.session.span_err(span, fmt!("unresolved import: could not find `%s` in \
`%s`.", *segment_name, module_name));
return Failed;
}
Indeterminate => {