From 048acee39babe759d1db0f32f263857c27361746 Mon Sep 17 00:00:00 2001 From: Nicolas Williams Date: Wed, 20 Feb 2019 19:54:06 -0600 Subject: [PATCH] Fix if-then-else example formatting --- docs/content/3.manual/manual.yml | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/docs/content/3.manual/manual.yml b/docs/content/3.manual/manual.yml index 011218f8a2..150565b45b 100644 --- a/docs/content/3.manual/manual.yml +++ b/docs/content/3.manual/manual.yml @@ -2062,14 +2062,13 @@ sections: More cases can be added to an if using `elif A then B` syntax. examples: - - program: |- - if . == 0 then + - program: 'if . == 0 then "zero" elif . == 1 then "one" else "many" - end + end' input: 2 output: ['"many"']