Skip to content

Commit b1751a9

Browse files
authored
Update 01_Descriptor_pool_and_sets.md (#312)
Fix small typo
1 parent 0fa8b53 commit b1751a9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

en/05_Uniform_buffers/01_Descriptor_pool_and_sets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ for (size_t i = 0; i < MAX_FRAMES_IN_FLIGHT; i++) {
162162
}
163163
```
164164

165-
If you're overwriting the whole buffer, like we are in this case, then it is is also possible to use the `VK_WHOLE_SIZE` value for the range. The configuration of descriptors is updated using the `vkUpdateDescriptorSets`
165+
If you're overwriting the whole buffer, like we are in this case, then it is also possible to use the `VK_WHOLE_SIZE` value for the range. The configuration of descriptors is updated using the `vkUpdateDescriptorSets`
166166
function, which takes an array of `VkWriteDescriptorSet` structs as parameter.
167167

168168
```c++

0 commit comments

Comments
 (0)