fix a minor typo (#3703)

L1642 `creates` -> `create`
This commit is contained in:
J
2023-04-19 11:09:58 +02:00
committed by GitHub
parent 4035748c83
commit 191cabc833

View File

@@ -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,
}