aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorDaniel Mensinger <daniel@mensinger-ka.de>2021-08-21 16:28:39 +0200
committerDaniel Mensinger <daniel@mensinger-ka.de>2021-10-03 11:51:37 +0200
commitc10e22837158b8b7b5f1606fb9292d6ebfda6ea3 (patch)
treed081b790331e23080469bef27da682be45de206d /docs
parentde32802ee4e4f72aa3e0f265b4f1b4d439182eae (diff)
downloadmeson-c10e22837158b8b7b5f1606fb9292d6ebfda6ea3.zip
meson-c10e22837158b8b7b5f1606fb9292d6ebfda6ea3.tar.gz
meson-c10e22837158b8b7b5f1606fb9292d6ebfda6ea3.tar.bz2
docs: Fixes found during the YAML conversion process
Diffstat (limited to 'docs')
-rw-r--r--docs/markdown/Syntax.md3
1 files changed, 3 insertions, 0 deletions
diff --git a/docs/markdown/Syntax.md b/docs/markdown/Syntax.md
index 897d55b..04833e6 100644
--- a/docs/markdown/Syntax.md
+++ b/docs/markdown/Syntax.md
@@ -260,6 +260,9 @@ string = 'xyxHelloxyx'.strip('xy')
# 'string' now has the value 'Hello'
```
+Since 0.43.0, you can specify one positional string argument,
+and all characters in that string will be stripped.
+
#### .to_upper(), .to_lower()
```meson