1
0
mirror of https://github.com/emilk/egui.git synced 2026-08-31 13:50:04 -04:00

Improve eframe wasm32 docs

This commit is contained in:
Emil Ernerfeldt
2022-12-11 16:52:37 +01:00
parent 0a1b85f35a
commit 4e3ae098a9
3 changed files with 7 additions and 5 deletions

View File

@@ -74,7 +74,7 @@ pub trait App {
///
/// Can be used from web to interact or other external context.
///
/// You need to implement this if you want to be able to access the application from JS using [`AppRunner::app_mut`].
/// You need to implement this if you want to be able to access the application from JS using [`crate::web::backend::AppRunner`].
///
/// This is needed because downcasting `Box<dyn App>` -> `Box<dyn Any>` to get &`ConcreteApp` is not simple in current rust.
///