diff options
author | 2020-04-01 04:35:24 +0200 | |
---|---|---|
committer | 2020-04-02 03:44:14 +0200 | |
commit | f5e7e0625eec96f96d9dcbe514198a82bd5a49ec (patch) | |
tree | ee358df2558c8122498061eac3e9bf509df7e204 /src/executor.rs | |
parent | 4c44517556976454c0598c876addb10b88515cda (diff) | |
download | iced-f5e7e0625eec96f96d9dcbe514198a82bd5a49ec.tar.gz iced-f5e7e0625eec96f96d9dcbe514198a82bd5a49ec.tar.bz2 iced-f5e7e0625eec96f96d9dcbe514198a82bd5a49ec.zip |
Improve docs for `Sandbox` and `Application`
Diffstat (limited to 'src/executor.rs')
-rw-r--r-- | src/executor.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/executor.rs b/src/executor.rs index 6c5425d1..59d59a5a 100644 --- a/src/executor.rs +++ b/src/executor.rs @@ -1,5 +1,5 @@ //! Choose your preferred executor to power your application. -pub use crate::common::{executor::Null, Executor}; +pub use crate::runtime::{executor::Null, Executor}; pub use platform::Default; |