Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/beginner/tutorial1-window/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down