Skip to content

Commit fc8e1cb

Browse files
committed
missing import
1 parent 5cd6bb1 commit fc8e1cb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/libcore/core.rc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ built-in types and runtime services, or that is used in nearly every
1313
non-trivial program.
1414

1515
`core` includes modules corresponding to each of the integer types, each of
16-
the floating point types, the `bool` type, tuples, characters, strings,
16+
THE floating point types, the `bool` type, tuples, characters, strings,
1717
vectors (`vec`), shared boxes (`box`), and unsafe pointers (`ptr`).
1818
Additionally, `core` provides very commonly used built-in types and
1919
operations, concurrency primitives, platform abstractions, I/O, and complete

src/rustc/middle/typeck/regionck.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ the region scope `r`.
1515

1616
import util::ppaux;
1717
import syntax::print::pprust;
18-
import check::{fn_ctxt, methods};
18+
import check::{fn_ctxt, methods, lookup_def};
1919

2020
type rcx = @{fcx: @fn_ctxt, mut errors_reported: uint};
2121
type rvt = visit::vt<rcx>;

0 commit comments

Comments
 (0)