Skip to content

Commit e2cb6bb

Browse files
authored
Merge pull request KhronosGroup#384 from lemony-limey/05-01-descriptor-pool-and-sets-typo-fix
Fixed mismatched closing brace typo in 01_Descriptor_pool_and_sets.adoc
2 parents a10f462 + 6b41a12 commit e2cb6bb

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

en/05_Uniform_buffers/01_Descriptor_pool_and_sets.adoc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ We first need to describe which descriptor types our descriptor sets are going t
3434

3535
[,c++]
3636
----
37-
vk::DescriptorPoolSize poolSize{ .type = vk::DescriptorType::eUniformBuffer, .descriptorCount = MAX_FRAMES_IN_FLIGHT);
37+
vk::DescriptorPoolSize poolSize{ .type = vk::DescriptorType::eUniformBuffer, .descriptorCount = MAX_FRAMES_IN_FLIGHT };
3838
----
3939

4040
We will allocate one of these descriptors for every frame.

0 commit comments

Comments
 (0)