diff options
author | 2020-04-15 07:56:25 +0200 | |
---|---|---|
committer | 2020-04-15 07:56:25 +0200 | |
commit | 5cb40dc095d4561b6039a5bdf564eea80a46a6d1 (patch) | |
tree | 25f0c7ed89c72eb97f79a12155c092e1ed247db9 /src/sandbox.rs | |
parent | 99352f02fd39250475861209d85f696b50ec9b73 (diff) | |
download | iced-5cb40dc095d4561b6039a5bdf564eea80a46a6d1.tar.gz iced-5cb40dc095d4561b6039a5bdf564eea80a46a6d1.tar.bz2 iced-5cb40dc095d4561b6039a5bdf564eea80a46a6d1.zip |
Mention flags are not supported by `Sandbox`
Fixes #291
Diffstat (limited to 'src/sandbox.rs')
-rw-r--r-- | src/sandbox.rs | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/sandbox.rs b/src/sandbox.rs index 5233ebae..c6fa45d0 100644 --- a/src/sandbox.rs +++ b/src/sandbox.rs @@ -6,11 +6,11 @@ use crate::{executor, Application, Command, Element, Settings, Subscription}; /// simpler interface than [`Application`]. /// /// Unlike an [`Application`], a [`Sandbox`] cannot run any asynchronous -/// actions. However, both traits are very similar and upgrading from a -/// [`Sandbox`] is very straightforward. +/// actions or be initialized with some external flags. However, both traits +/// are very similar and upgrading from a [`Sandbox`] is very straightforward. /// /// Therefore, it is recommended to always start by implementing this trait and -/// upgrade only once you need to perform asynchronous work. +/// upgrade only once necessary. /// /// [`Application`]: trait.Application.html /// [`Sandbox`]: trait.Sandbox.html |