From 9fcc4824afee7704cd4d9b60e5727d5b9a520cfb Mon Sep 17 00:00:00 2001 From: Daniel McNab <36049421+DJMcNab@users.noreply.github.com> Date: Mon, 9 Aug 2021 07:58:52 +0100 Subject: [PATCH] Use just the small version (#705) --- crates/spirv-std/macros/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/crates/spirv-std/macros/src/lib.rs b/crates/spirv-std/macros/src/lib.rs index 71eda30397..cf5e21d639 100644 --- a/crates/spirv-std/macros/src/lib.rs +++ b/crates/spirv-std/macros/src/lib.rs @@ -85,7 +85,7 @@ use quote::ToTokens; /// /// The grammar for the macro is as follows: /// -/// ```rust,no_compile +/// ```rust,ignore /// Image!( /// , /// , @@ -99,7 +99,7 @@ use quote::ToTokens; /// `=true` can be omitted as shorthand - e.g. `sampled` is short for `sampled=true`. /// /// A basic example looks like this: -/// ```rust,no_compile +/// ```rust,ignore /// #[spirv(vertex)] /// fn main(#[spirv(descriptor_set = 0, binding = 0)] image: &Image!(2D, type=f32, sampled)) {} /// ```