From 79b62c4cc934f8a395d435f419ffb9e4a1042d86 Mon Sep 17 00:00:00 2001 From: Ebenezer Don Date: Mon, 26 Oct 2020 21:26:45 +0100 Subject: [PATCH] Reword the explanation for `orders` parameter Currently, the `orders` parameter is a bit difficult to understand. I had to read the section multiple times to get it. Can you help go through the edit to see if I understood it correctly, myself? If so, I would like to contribute to making it easier for others too. --- crate/guides/0.7.0/init.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crate/guides/0.7.0/init.md b/crate/guides/0.7.0/init.md index c7219da..285e388 100644 --- a/crate/guides/0.7.0/init.md +++ b/crate/guides/0.7.0/init.md @@ -64,7 +64,7 @@ That's why we decided to add parameter `url` - for your comfort (aka _developer ## Parameter `orders: &mut impl Orders` -It's the way how you are "giving orders" to Seed. Do you want to send an HTTP request? Do you want to subscribe to Url changes? Do you want to do something after 5 seconds? Well, use `orders`. +It's the way you tell Seed what to do immediately the app starts. Do you want to send an HTTP request? Do you want to subscribe to Url changes? Do you want to do something after 5 seconds? Well, use `orders`. `orders` has many useful methods, we will discuss them in other chapters. Example usage: