From 61845425300a22a759b615b806ae132043545602 Mon Sep 17 00:00:00 2001 From: Didrik Munther <5240046+didrikmunther@users.noreply.github.com> Date: Wed, 30 Oct 2024 11:36:15 +0100 Subject: [PATCH] Fix wrong type in example --- 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;