From a50515611a0f5ba8c2964a802259d5c0a753fd5d Mon Sep 17 00:00:00 2001 From: J <124119483+escwxyz@users.noreply.github.com> Date: Tue, 18 Apr 2023 17:35:50 +0800 Subject: [PATCH] fix a minor typo L1642 `creates` -> `create` --- wgpu-types/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/wgpu-types/src/lib.rs b/wgpu-types/src/lib.rs index 360b9ed7cd..49611e4bef 100644 --- a/wgpu-types/src/lib.rs +++ b/wgpu-types/src/lib.rs @@ -1639,7 +1639,7 @@ pub enum PrimitiveTopology { TriangleList = 3, /// Vertex data is a triangle strip. Each set of three adjacent vertices form a triangle. /// - /// Vertices `0 1 2 3 4 5` creates four triangles `0 1 2`, `2 1 3`, `2 3 4`, and `4 3 5` + /// Vertices `0 1 2 3 4 5` create four triangles `0 1 2`, `2 1 3`, `2 3 4`, and `4 3 5` TriangleStrip = 4, }