Skip to content

Commit dcfd879

Browse files
authored
Fix spelling error
1 parent 8780354 commit dcfd879

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

en/03_Drawing_a_triangle/02_Graphics_pipeline_basics/02_Fixed_functions.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,9 @@ and blend constants. If you want to use dynamic state and keep these properties
1313
then you'll have to fill in a `VkPipelineDynamicStateCreateInfo` structure like this:
1414

1515
```c++
16-
std::vector<VkDynamicState> dynamicStates = {
16+
std::vector<VkDynamicState> dynamicStates =
1717
VK_DYNAMIC_STATE_VIEWPORT,
18-
VK_DYNAMIC_STATE_SCISSROR
18+
VK_DYNAMIC_STATE_SCISSOR
1919
};
2020

2121
VkPipelineDynamicStateCreateInfo dynamicState{};

0 commit comments

Comments
 (0)