diff options
author | Pico Geyer <Picogeyer@gmail.com> | 2023-02-10 11:55:22 +0200 |
---|---|---|
committer | Pico Geyer <pico.geyer@netronome.com> | 2023-02-10 12:01:44 +0200 |
commit | a0f1cb0ce7e82de8490645dde240f71d71d9225e (patch) | |
tree | c5dc7485ee9870bc6d92161953df60c691fad01d | |
parent | 5597d68e2d73a3b89ff36fcfeac82d7fe7d4f384 (diff) |
Fix minor syntax issue in the one of the examples.
Attribute set expressions need to end with a ;
-rw-r--r-- | doc/manual/src/language/index.md | 2 |
1 files changed, 1 insertions, 1 deletions
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. <tr> <td> - `"hello ${ { a = "world" }.a }"` + `"hello ${ { a = "world"; }.a }"` `"1 2 ${toString 3}"` |