Merge pull request #45 from csherratt/master

changed extern mod to extern crate
This commit is contained in:
Brendan Zabarauskas 2014-02-16 18:21:32 +11:00
commit 93f739f696
2 changed files with 3 additions and 3 deletions

View file

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

View file

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