From c14f84262f0e5373655df32c437ae436ac21737a Mon Sep 17 00:00:00 2001 From: Filip Tibell Date: Sun, 11 Feb 2024 09:25:24 +0100 Subject: [PATCH] Fix readme example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index d8e673c..d7f4453 100644 --- a/README.md +++ b/README.md @@ -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),