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

Skip to content

Commit fc705db

Browse files
Superfluous semi-colon
1 parent e014841 commit fc705db

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

en/05_Uniform_buffers/01_Descriptor_pool_and_sets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ also need to specify the maximum number of descriptor sets that may be
5151
allocated:
5252

5353
```c++
54-
poolInfo.maxSets = static_cast<uint32_t>(swapChainImages.size());;
54+
poolInfo.maxSets = static_cast<uint32_t>(swapChainImages.size());
5555
```
5656

5757
The structure has an optional flag similar to command pools that determines if

0 commit comments

Comments
 (0)