diff options
Diffstat (limited to 'src/libextra/lib.rs')
| -rw-r--r-- | src/libextra/lib.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libextra/lib.rs b/src/libextra/lib.rs index c630ac096f6..be7aa216e30 100644 --- a/src/libextra/lib.rs +++ b/src/libextra/lib.rs @@ -34,10 +34,10 @@ Rust extras are part of the standard Rust distribution. #[deny(non_camel_case_types)]; #[deny(missing_doc)]; -extern mod sync; -extern mod serialize; +extern crate sync; +extern crate serialize; -extern mod collections; +extern crate collections; // Utility modules |
