s/’/' to be more tty friendly

This commit is contained in:
Andy Weidenbaum
2022-01-19 20:20:46 +11:00
parent a2a801e69d
commit 3daf079207
2 changed files with 4 additions and 4 deletions

View File

@@ -126,7 +126,7 @@ fn module_reloading_works() {
assert_eq!("hello lume", hello);
// Remove lume module from Luas `package.loaded` cache to facilitate reload.
// Remove lume module from Lua's `package.loaded` cache to facilitate reload.
lua.context::<_, rlua::Result<()>>(|lua_ctx| {
let globals = lua_ctx.globals();
let loaded: Table = globals.get::<_, Table>("package")?.get("loaded")?;