docs: fix yaml refman example of embedding links in a code comment

With the previous commit, we made this smartly detect when parentheses
are not needed. But the example was broken, because it doesn't follow
its own documented rules to use `[[#` syntax. Add the missing hash
character.
This commit is contained in:
Eli Schwartz 2022-06-26 00:33:00 -04:00 committed by Daniel Mensinger
parent ad0c70bac1
commit 0be3532456
1 changed files with 1 additions and 1 deletions

View File

@ -48,7 +48,7 @@ Examples:
Now the same in a code block:
```meson
[[#@str]] [[executable]]('main', [
[[#@str]] [[#executable]]('main', [
'file_@0@.cpp'.format([[#meson.version]])
])
```