diff options
author | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-10-03 12:18:03 +0200 |
---|---|---|
committer | Daniel Mensinger <daniel@mensinger-ka.de> | 2021-10-03 12:19:46 +0200 |
commit | 0b9c7b74bef2dd5913cc8d96de0fc016d682ead1 (patch) | |
tree | 5c75a9257bf7012ec0704ca2d1cbef288e577bb2 /docs/yaml/elementary | |
parent | 102484b820d25d10d2dc10efc15178f84a87198a (diff) | |
download | meson-0b9c7b74bef2dd5913cc8d96de0fc016d682ead1.zip meson-0b9c7b74bef2dd5913cc8d96de0fc016d682ead1.tar.gz meson-0b9c7b74bef2dd5913cc8d96de0fc016d682ead1.tar.bz2 |
docs: Update YAML docs after rebase
Diffstat (limited to 'docs/yaml/elementary')
-rw-r--r-- | docs/yaml/elementary/str.yml | 13 |
1 files changed, 9 insertions, 4 deletions
diff --git a/docs/yaml/elementary/str.yml b/docs/yaml/elementary/str.yml index e55243f..b79577a 100644 --- a/docs/yaml/elementary/str.yml +++ b/docs/yaml/elementary/str.yml @@ -219,10 +219,15 @@ methods: # path now has the value '/usr/bin:/bin:/usr/local/bin' ``` - posargs: - string_list: - type: list[str] - description: The list to join with the current string + varargs: + name: strings + type: str + since: 0.60.0 + description: | + The strings to join with the current string. + + Before Meson *0.60.0* this function only accepts a single positional + argument of the type [[list[str]]]. # str.underscorify - name: underscorify |