aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLaurin-Luis Lehning <65224843+e820@users.noreply.github.com>2021-03-07 22:56:10 +0100
committerXavier Claessens <xclaesse@gmail.com>2021-03-10 08:55:22 -0500
commite124afa409e87a9249a71663e8b7cbf5a313ce4f (patch)
tree112613682aa435142e69d450f0e8529b1f5c6b4f
parent3739780b0e0a62f0c088d9413deb9d7bdfbe6700 (diff)
downloadmeson-e124afa409e87a9249a71663e8b7cbf5a313ce4f.zip
meson-e124afa409e87a9249a71663e8b7cbf5a313ce4f.tar.gz
meson-e124afa409e87a9249a71663e8b7cbf5a313ce4f.tar.bz2
Fix release snippet still using the old fstring syntax
-rw-r--r--docs/markdown/snippets/fstrings.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/snippets/fstrings.md b/docs/markdown/snippets/fstrings.md
index a797aaa..df7dc2c 100644
--- a/docs/markdown/snippets/fstrings.md
+++ b/docs/markdown/snippets/fstrings.md
@@ -4,4 +4,4 @@ In addition to the conventional `'A string @0@ to be formatted @1@'.format(n, m)
method of formatting strings in the Meson DSL, there's now the additional
`f'A string @n@ to be formatted @m@'` notation that provides a non-positional
and clearer alternative. Meson's format strings are currently restricted to
-identity-expressions, meaning `f'format {'m' + 'e'}'` will not parse.
+identity-expressions, meaning `f'format @'m' + 'e'@'` will not parse.