From 79a011abdc999e833e657c6438516716d7728ea7 Mon Sep 17 00:00:00 2001 From: Joshua Simmons Date: Thu, 8 Sep 2022 21:12:03 +0200 Subject: [PATCH] Fix braces causing a rustdoc error --- vulkan-sys/src/structs.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vulkan-sys/src/structs.rs b/vulkan-sys/src/structs.rs index 830acbb..d7af5d5 100644 --- a/vulkan-sys/src/structs.rs +++ b/vulkan-sys/src/structs.rs @@ -1542,7 +1542,7 @@ pub struct WriteDescriptorSet<'a> { pub descriptor_type: DescriptorType, /// Sampler, image view, and layout for SAMPLER, COMBINED_IMAGE_SAMPLER, {SAMPLED,STORAGE}_IMAGE, and INPUT_ATTACHMENT descriptor types. pub image_info: Option<&'a DescriptorImageInfo>, - /// Raw buffer, size, and offset for {UNIFORM,STORAGE}_BUFFER[_DYNAMIC] descriptor types. + /// Raw buffer, size, and offset for {UNIFORM,STORAGE}_BUFFER\[_DYNAMIC\] descriptor types. pub buffer_info: Option<&'a DescriptorBufferInfo>, /// Buffer view to write to the descriptor for {UNIFORM,STORAGE}_TEXEL_BUFFER descriptor types. pub texel_buffer_view: Option<&'a BufferView>, -- 2.49.0