From: Joshua Simmons Date: Thu, 8 Sep 2022 19:12:03 +0000 (+0200) Subject: Fix braces causing a rustdoc error X-Git-Url: https://git.nega.tv//gitweb.cgi?a=commitdiff_plain;h=79a011abdc999e833e657c6438516716d7728ea7;p=josh%2Fnarcissus Fix braces causing a rustdoc error --- 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>,