Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit ef88945

Browse files
committed
Fix duplicate semicolon
1 parent 26e13e4 commit ef88945

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

04_Vertex_buffers/00_Vertex_input_description.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -202,7 +202,7 @@ auto bindingDescription = Vertex::getBindingDescription();
202202
auto attributeDescriptions = Vertex::getAttributeDescriptions();
203203

204204
vertexInputInfo.vertexBindingDescriptionCount = 1;
205-
vertexInputInfo.vertexAttributeDescriptionCount = attributeDescriptions.size();;
205+
vertexInputInfo.vertexAttributeDescriptionCount = attributeDescriptions.size();
206206
vertexInputInfo.pVertexBindingDescriptions = &bindingDescription;
207207
vertexInputInfo.pVertexAttributeDescriptions = attributeDescriptions.data();
208208
```

0 commit comments

Comments
 (0)