From c891b287c1abbd715202bc1c326fce7095d34664 Mon Sep 17 00:00:00 2001 From: Marshall Lochbaum Date: Sat, 30 Oct 2021 19:06:17 -0400 Subject: Missing semicolons in case header example --- docs/doc/block.html | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'docs/doc/block.html') diff --git a/docs/doc/block.html b/docs/doc/block.html index a1446e75..491fd87d 100644 --- a/docs/doc/block.html +++ b/docs/doc/block.html @@ -206,9 +206,9 @@ ERROR

Case headers

A special rule allows for convenient case-matching syntax for one-argument functions. In any function header with one argument, the function name can be omitted as long as the argument is not a plain identifier—it must be 𝕩 or a compound value like a list to distinguish it from an immediate block label.

Test  {
-  "abc": "string"
-  2,b: 𝕩
-  5:     "number"
+  "abc": "string" ;
+  2,b: 𝕩       ;
+  5:     "number" ;
   𝕩:     "default"
 }
 
-- cgit v1.2.3