Skip to content

Commit

Permalink
Add note in docs that multiline f-strings are not supported
Browse files Browse the repository at this point in the history
Companion to mesonbuild#10284
  • Loading branch information
selavy authored and eli-schwartz committed Apr 15, 2022
1 parent 5df0fb4 commit ab5ed4d
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions docs/markdown/Syntax.md
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down Expand Up @@ -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
Expand Down

0 comments on commit ab5ed4d

Please sign in to comment.