aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek.chauhan@gmail.com>2017-07-24 21:52:16 +0000
committerGitHub <noreply@github.com>2017-07-24 21:52:16 +0000
commitd5fc10fbd8767ebd36667a7b6fc3f1a44428706e (patch)
treeca9ca1b1b7d9d984a64b0326e50dad3185b84cdb
parent8dd1d6d6461ff0ed7097d05f5abf2d94b2278a9b (diff)
downloadmeson-d5fc10fbd8767ebd36667a7b6fc3f1a44428706e.zip
meson-d5fc10fbd8767ebd36667a7b6fc3f1a44428706e.tar.gz
meson-d5fc10fbd8767ebd36667a7b6fc3f1a44428706e.tar.bz2
Fix wording about array immutability
-rw-r--r--docs/markdown/Syntax.md2
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