changed extern mod to extern crate

This commit is contained in:
Colin Sherratt 2014-02-15 21:54:53 -05:00
parent 5872ef347e
commit 4bcb1a5406
2 changed files with 3 additions and 3 deletions

View file

@ -16,8 +16,8 @@
#[feature(globs)];
extern mod cgmath;
extern mod extra;
extern crate cgmath;
extern crate extra;
// pub mod array;
pub mod matrix;

View file

@ -16,7 +16,7 @@
#[feature(globs)];
extern mod cgmath;
extern crate cgmath;
// pub mod array;
pub mod matrix;