From 83a30064f4812d0029532675a5f2bf38c257ad0e Mon Sep 17 00:00:00 2001 From: Elie Michel Date: Mon, 18 Nov 2024 17:28:22 +0100 Subject: [PATCH] Minor typo in README (#5381) --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bdf42291..b5f00dfb 100644 --- a/README.md +++ b/README.md @@ -296,7 +296,7 @@ If you call `.await` in your GUI code, the UI will freeze, which is very bad UX. * [`eventuals::Eventual`](https://docs.rs/eventuals/latest/eventuals/struct.Eventual.html) * [`tokio::sync::watch::channel`](https://docs.rs/tokio/latest/tokio/sync/watch/fn.channel.html) -### How to I create a file dialog? +### How do I create a file dialog? The async version of [rfd](https://docs.rs/rfd/latest/rfd/) supports both native and Wasm. See example app here https://github.com/woelper/egui_pick_file which also has a demo available via [gitub pages](https://woelper.github.io/egui_pick_file/).