From 5cb40dc095d4561b6039a5bdf564eea80a46a6d1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?H=C3=A9ctor=20Ram=C3=B3n=20Jim=C3=A9nez?= Date: Wed, 15 Apr 2020 07:56:25 +0200 Subject: [PATCH] Mention flags are not supported by `Sandbox` Fixes #291 --- src/sandbox.rs | 6 +++--- 1 file 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