From a0f1cb0ce7e82de8490645dde240f71d71d9225e Mon Sep 17 00:00:00 2001 From: Pico Geyer Date: Fri, 10 Feb 2023 11:55:22 +0200 Subject: [PATCH] Fix minor syntax issue in the one of the examples. Attribute set expressions need to end with a ; --- doc/manual/src/language/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/manual/src/language/index.md b/doc/manual/src/language/index.md index 31300631c..3eabe1a02 100644 --- a/doc/manual/src/language/index.md +++ b/doc/manual/src/language/index.md @@ -91,7 +91,7 @@ This is an incomplete overview of language features, by example. - `"hello ${ { a = "world" }.a }"` + `"hello ${ { a = "world"; }.a }"` `"1 2 ${toString 3}"`