From 0320e75f97789470bd0d05817cb37ba11753d6a2 Mon Sep 17 00:00:00 2001 From: nickwilcox <44078858+nickwilcox@users.noreply.github.com> Date: Sat, 9 Nov 2019 18:24:07 +1100 Subject: [PATCH] fix invalid markdown in shader docs (#1271) --- vulkano-shaders/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/vulkano-shaders/src/lib.rs b/vulkano-shaders/src/lib.rs index 0189fa5e..704b4253 100644 --- a/vulkano-shaders/src/lib.rs +++ b/vulkano-shaders/src/lib.rs @@ -135,7 +135,7 @@ //! to specify one or more standard include directories. Relative paths are relative to the //! directory, which contains the source file the `#include "..."` directive is declared in. //! -//! ## `define: [("NAME", "VALUE"), ...] +//! ## `define: [("NAME", "VALUE"), ...]` //! //! Adds the given macro definitions to the pre-processor. This is equivalent to passing `-DNAME=VALUE` //! on the command line.