From ec382ffa7e5ccfa73411762a9374eaee45962eb3 Mon Sep 17 00:00:00 2001 From: Fazil Date: Sun, 22 Sep 2024 23:19:08 +0530 Subject: [PATCH] Fix typo in README.md supproted -> supported --- docs/beginner/tutorial2-surface/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/beginner/tutorial2-surface/README.md b/docs/beginner/tutorial2-surface/README.md index 6a11fcb0..7f593b5b 100644 --- a/docs/beginner/tutorial2-surface/README.md +++ b/docs/beginner/tutorial2-surface/README.md @@ -155,7 +155,7 @@ You can view a full list of features [here](https://docs.rs/wgpu/latest/wgpu/str The `limits` field describes the limit of certain types of resources that we can create. We'll use the defaults for this tutorial so we can support most devices. You can view a list of limits [here](https://docs.rs/wgpu/latest/wgpu/struct.Limits.html). -The `memory_hints` field provides the adapter with a preferred memory allocation strategy, if supproted. You can view the available options [here](https://wgpu.rs/doc/wgpu/enum.MemoryHints.html). +The `memory_hints` field provides the adapter with a preferred memory allocation strategy, if supported. You can view the available options [here](https://wgpu.rs/doc/wgpu/enum.MemoryHints.html). ```rust let surface_caps = surface.get_capabilities(&adapter);