Fix readme example

This commit is contained in:
Filip Tibell 2024-02-11 09:25:24 +01:00
parent 317936770b
commit c14f84262f
No known key found for this signature in database

View file

@ -52,7 +52,7 @@ lua.globals().set(
lua.create_async_function(|lua, path: String| async move {
// Spawn background task that does not take up resources on the lua thread
// Normally, futures in mlua can not be shared across threads, but this can
let task = lua.spawn_future(async move {
let task = lua.spawn(async move {
match read_to_string(path).await {
Ok(s) => Ok(Some(s)),
Err(e) if e.kind() == ErrorKind::NotFound => Ok(None),