diff options
author | Peter Hutterer <peter.hutterer@who-t.net> | 2021-04-15 15:11:52 +1000 |
---|---|---|
committer | Xavier Claessens <xclaesse@gmail.com> | 2021-04-15 08:21:53 -0400 |
commit | f6cd54cc40440b095aa34bc4f019e534366683b2 (patch) | |
tree | d3c8fe1a8d4cbc77511df3fe0a00502b2a203ffd /docs | |
parent | c1a8f00d789550c2d4b5c62f8f1801e2328532b3 (diff) | |
download | meson-f6cd54cc40440b095aa34bc4f019e534366683b2.zip meson-f6cd54cc40440b095aa34bc4f019e534366683b2.tar.gz meson-f6cd54cc40440b095aa34bc4f019e534366683b2.tar.bz2 |
docs: add the 'since' tag to string.replace
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/Reference-manual.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/Reference-manual.md b/docs/markdown/Reference-manual.md index fbef6a9..8624138 100644 --- a/docs/markdown/Reference-manual.md +++ b/docs/markdown/Reference-manual.md @@ -2202,8 +2202,8 @@ are immutable, all operations return their results as a new string. - `join(list_of_strings)`: the opposite of split, for example `'.'.join(['a', 'b', 'c']` yields `'a.b.c'`. -- `replace('old_substr', 'new_str')`: replaces instances of `old_substr` in the - string with `new_str` and returns a new string +- `replace('old_substr', 'new_str')` *(since 0.58.0)*: replaces instances of + `old_substr` in the string with `new_str` and returns a new string - `split(split_character)`: splits the string at the specified character (or whitespace if not set) and returns the parts in an |