From fdf8c0a158b9184dbf0c357f3c06bdd4183bc3d2 Mon Sep 17 00:00:00 2001 From: Lex Date: Fri, 29 May 2026 13:46:14 +0100 Subject: [PATCH] beginner: fix word order --- 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 9bcc6108..6bf24d3f 100644 --- a/docs/beginner/tutorial1-window/README.md +++ b/docs/beginner/tutorial1-window/README.md @@ -78,7 +78,7 @@ impl State { // ... ``` -There's not much going on here, but once we start using, we WGPU will start filling this up pretty quick. Most of the methods on this struct are place holders, though in `render()` we ask the window to draw another frame as soon as possible as winit only draws one frame unless the window is resized or we request it to draw another one. +There's not much going on here, but once we start using WGPU, we will start filling this up pretty quick. Most of the methods on this struct are place holders, though in `render()` we ask the window to draw another frame as soon as possible as winit only draws one frame unless the window is resized or we request it to draw another one. Now that we have our `State` struct, we need to tell winit how to use it. We'll create an `App` struct for this.