From a2e7324f49129cca652daea45bc76c8b2b9b1aed Mon Sep 17 00:00:00 2001 From: Piper Wolf Date: Sat, 3 Jan 2026 12:52:19 -0800 Subject: [PATCH] Typo fix: missing space in tutorial one --- docs/beginner/tutorial1-window/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/beginner/tutorial1-window/README.md b/docs/beginner/tutorial1-window/README.md index 66655d0c..37abfd48 100644 --- a/docs/beginner/tutorial1-window/README.md +++ b/docs/beginner/tutorial1-window/README.md @@ -102,7 +102,7 @@ impl App { So the `App` struct has two fields: `state` and `proxy`. -The `state` variable stores our `State` struct as an option.The reason we need an option is that `State::new()` needs a window and we can't create a window until the application gets to the `Resumed` state. We'll get more into that in a bit. +The `state` variable stores our `State` struct as an option. The reason we need an option is that `State::new()` needs a window and we can't create a window until the application gets to the `Resumed` state. We'll get more into that in a bit. The `proxy` variable is only needed on the web. The reason for this is that creating WGPU resources is an async process. Again we'll get into that in a bit.