diff options
Diffstat (limited to 'docs/markdown')
-rw-r--r-- | docs/markdown/Syntax.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/markdown/Syntax.md b/docs/markdown/Syntax.md index cf8ead2..37c1857 100644 --- a/docs/markdown/Syntax.md +++ b/docs/markdown/Syntax.md @@ -216,7 +216,7 @@ my_array += ['something'] my_array += 'else' ``` -Note that this will create a new `my_array` object instead of appending to the old one since all objects in Meson are immutable. +Note appending to an array will always create a new array object and assign it to `my_array` instead of modifying the original since all objects in Meson are immutable. #### Array methods |