From 8358d8c33ba0d4c5aa677f5d46af714a89d7daf8 Mon Sep 17 00:00:00 2001 From: Mark Sujew Date: Wed, 30 Oct 2024 11:53:01 +0100 Subject: [PATCH] Fix incorrect type in semantic model docs --- hugo/content/docs/reference/semantic-model.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hugo/content/docs/reference/semantic-model.md b/hugo/content/docs/reference/semantic-model.md index 151bb111..a24451c6 100644 --- a/hugo/content/docs/reference/semantic-model.md +++ b/hugo/content/docs/reference/semantic-model.md @@ -203,7 +203,7 @@ Definition: Expression: Addition; Addition infers Expression: - left=Value ('+' right=Expression)?; + left=Primary ('+' right=Expression)?; Primary infers Expression: '(' Expression ')' | {Literal} value=NUMBER;