From e46f1401e46c3698039df97fbb4751873c5c2e89 Mon Sep 17 00:00:00 2001 From: Matthew Pope Date: Fri, 13 Dec 2024 12:29:56 -0800 Subject: [PATCH] Adds suggested changes --- conformance/tdl/if_multi.ion | 2 +- conformance/tdl/if_none.ion | 2 +- conformance/tdl/if_single.ion | 4 ++-- conformance/tdl/if_some.ion | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/conformance/tdl/if_multi.ion b/conformance/tdl/if_multi.ion index 0be817a..02dac27 100644 --- a/conformance/tdl/if_multi.ion +++ b/conformance/tdl/if_multi.ion @@ -41,7 +41,7 @@ "an expression group with a multiple macros that collectively produce a single value" (mactab (macro is_multi () (.$ion::if_multi (.. (.values 0) (.none)) true false))) (mactab (macro is_multi () (.$ion::if_multi (.. (.none) (.values 0)) true false))) - "an expression group with a single value and a macro produces nothing" + "an expression group with a single value and a macro that produces nothing" (mactab (macro is_multi () (.$ion::if_multi (.. 0 (.none)) true false))) (mactab (macro is_multi () (.$ion::if_multi (.. (.none) 0) true false))) (then "then if_multi should produce the false branch" diff --git a/conformance/tdl/if_none.ion b/conformance/tdl/if_none.ion index b104391..a0f7b02 100644 --- a/conformance/tdl/if_none.ion +++ b/conformance/tdl/if_none.ion @@ -44,7 +44,7 @@ "an expression group with a multiple macros that collectively produce a single value" (mactab (macro is_none () (.$ion::if_none (.. (.values 0) (.none)) true false))) (mactab (macro is_none () (.$ion::if_none (.. (.none) (.values 0)) true false))) - "an expression group with a single value and a macro produces nothing" + "an expression group with a single value and a macro that produces nothing" (mactab (macro is_none () (.$ion::if_none (.. 0 (.none)) true false))) (mactab (macro is_none () (.$ion::if_none (.. (.none) 0) true false))) "an expression group with multiple values" diff --git a/conformance/tdl/if_single.ion b/conformance/tdl/if_single.ion index 982c4c0..a539dfa 100644 --- a/conformance/tdl/if_single.ion +++ b/conformance/tdl/if_single.ion @@ -56,14 +56,14 @@ "an expression group with a multiple macros that collectively produce a single value" (mactab (macro is_single () (.$ion::if_single (.. (.values 0) (.none)) true false))) (mactab (macro is_single () (.$ion::if_single (.. (.none) (.values 0)) true false))) - "an expression group with a single value and a macro produces nothing" + "an expression group with a single value and a macro that produces nothing" (mactab (macro is_single () (.$ion::if_single (.. 0 (.none)) true false))) (mactab (macro is_single () (.$ion::if_single (.. (.none) 0) true false))) (then "then if_single should produce the true branch" (toplevel ('#$:is_single')) (produces true)))) -(ion_1_1 "when the first argument is some" +(ion_1_1 "when the first argument is a single value" (then "the 'true_branch' argument can be" (each "an empty expression group" (mactab (macro is_single () (.$ion::if_single "something" (..) false))) diff --git a/conformance/tdl/if_some.ion b/conformance/tdl/if_some.ion index 4894a1c..3664c57 100644 --- a/conformance/tdl/if_some.ion +++ b/conformance/tdl/if_some.ion @@ -44,7 +44,7 @@ "an expression group with a multiple macros that collectively produce a single value" (mactab (macro is_some () (.$ion::if_some (.. (.values 0) (.none)) true false))) (mactab (macro is_some () (.$ion::if_some (.. (.none) (.values 0)) true false))) - "an expression group with a single value and a macro produces nothing" + "an expression group with a single value and a macro that produces nothing" (mactab (macro is_some () (.$ion::if_some (.. 0 (.none)) true false))) (mactab (macro is_some () (.$ion::if_some (.. (.none) 0) true false))) "an expression group with multiple values"