aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorPeter Lesslie <pclesslie@gmail.com>2022-04-15 10:01:43 -0500
committerEli Schwartz <eschwartz93@gmail.com>2022-04-15 11:08:22 -0400
commitab5ed4db09331d8d182bcdda4a44fa88b9265acb (patch)
tree7c205c9b29a0268cfdef1e104aa104dba5c182fe /docs
parent5df0fb45ca44282e011078b5386831bb4dcbc2ee (diff)
downloadmeson-ab5ed4db09331d8d182bcdda4a44fa88b9265acb.zip
meson-ab5ed4db09331d8d182bcdda4a44fa88b9265acb.tar.gz
meson-ab5ed4db09331d8d182bcdda4a44fa88b9265acb.tar.bz2
Add note in docs that multiline f-strings are not supported
Companion to https://github.com/mesonbuild/meson/pull/10284
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Syntax.md7
1 files changed, 5 insertions, 2 deletions
diff --git a/docs/markdown/Syntax.md b/docs/markdown/Syntax.md
index 8c6ac24..b3b328f 100644
--- a/docs/markdown/Syntax.md
+++ b/docs/markdown/Syntax.md
@@ -176,7 +176,9 @@ int main (int argc, char ** argv) {
These are raw strings that do not support the escape sequences listed
above. These strings can also be combined with the string formatting
-functionality described below.
+functionality via `.format()` described below.
+
+Note that multiline f-strings are not supported.
### String index
@@ -209,7 +211,8 @@ As can be seen, the formatting works by replacing placeholders of type
*(Added 0.58)*
Format strings can be used as a non-positional alternative to the
-string formatting functionality described above.
+string formatting functionality described above. Note that multiline f-strings
+are not supported.
```meson
n = 10