From 4ff101f0eee1663db4651bebc8f0528a2f0c89ed Mon Sep 17 00:00:00 2001 From: John Date: Thu, 18 Apr 2024 23:58:44 -0500 Subject: [PATCH] yaml.rs: Fix extraneous pair in While --- cl-repl/examples/yaml.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cl-repl/examples/yaml.rs b/cl-repl/examples/yaml.rs index 610682d..1e18ce2 100644 --- a/cl-repl/examples/yaml.rs +++ b/cl-repl/examples/yaml.rs @@ -485,7 +485,7 @@ pub mod yamlify { y.key("While") .pair("cond", cond) .pair("pass", pass) - .pair("fail", fail); + .yaml(fail); } } impl Yamlify for Else {