From c576f2e5c4f800feac3f6bc7b8e8645307c8c3a1 Mon Sep 17 00:00:00 2001 From: Zack Slayton Date: Wed, 11 Dec 2024 07:41:38 -0500 Subject: [PATCH] Capitalization fix Co-authored-by: Joshua Barr <70981087+jobarr-amzn@users.noreply.github.com> --- src/lazy/expanded/macro_evaluator.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lazy/expanded/macro_evaluator.rs b/src/lazy/expanded/macro_evaluator.rs index c64f355b..27e6f5ca 100644 --- a/src/lazy/expanded/macro_evaluator.rs +++ b/src/lazy/expanded/macro_evaluator.rs @@ -2693,13 +2693,13 @@ mod tests { r#" (:add_macros (macro foo (x?) - (.make_string "Hello, " (.default (%x) "World!")))) + (.make_string "Hello, " (.default (%x) "world!")))) (:foo "Gary") (:foo) "#, r#" "Hello, Gary" - "Hello, World!" + "Hello, world!" "#, ) }