From 6c484d5483860df47e5cbe300ccb775bea0313c1 Mon Sep 17 00:00:00 2001 From: Erlend Walstad <96946613+lampsitter@users.noreply.github.com> Date: Sat, 11 May 2024 19:49:28 +0200 Subject: [PATCH] More macro -> macros renaming --- egui_commonmark/src/lib.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/egui_commonmark/src/lib.rs b/egui_commonmark/src/lib.rs index 3d9ad07..ca3acef 100644 --- a/egui_commonmark/src/lib.rs +++ b/egui_commonmark/src/lib.rs @@ -70,10 +70,10 @@ compile_error!("Cannot have multiple different parsing backends enabled at the s #[cfg(not(any(feature = "comrak", feature = "pulldown_cmark")))] compile_error!("Either the pulldown_cmark or comrak backend must be enabled"); -#[cfg(feature = "macro")] +#[cfg(feature = "macros")] pub use egui_commonmark_macros::*; -#[cfg(feature = "macro")] +#[cfg(feature = "macros")] // Do not rely on this directly! #[doc(hidden)] pub use egui_commonmark_backend;