summaryrefslogtreecommitdiff
path: root/src/thread.rs
diff options
context:
space:
mode:
authorkyren <kerriganw@gmail.com>2017-12-04 01:04:12 -0500
committerkyren <kerriganw@gmail.com>2017-12-04 01:04:12 -0500
commit0c644e71369893d49f8d3e0214dcbe3774207bcf (patch)
treebaddda6a8a0f170348cdfb45f300fc2cabb2d5b7 /src/thread.rs
parenta44b6b5170829599dd1e12ec5dc21923cf2f078b (diff)
downloadmlua-0c644e71369893d49f8d3e0214dcbe3774207bcf.zip
more reorganization in an attempt to shrink the size of lua.rs
Diffstat (limited to 'src/thread.rs')
-rw-r--r--src/thread.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/thread.rs b/src/thread.rs
index d784865..4f31019 100644
--- a/src/thread.rs
+++ b/src/thread.rs
@@ -4,7 +4,7 @@ use ffi;
use error::*;
use util::*;
use types::LuaRef;
-use lua::{FromLuaMulti, MultiValue, ToLuaMulti};
+use value::{FromLuaMulti, MultiValue, ToLuaMulti};
/// Status of a Lua thread (or coroutine).
#[derive(Debug, Copy, Clone, Eq, PartialEq)]