diff options
author | Mathieu Duponchelle <mathieu@centricular.com> | 2018-05-22 00:17:42 +0200 |
---|---|---|
committer | Mathieu Duponchelle <mathieu@centricular.com> | 2018-05-22 00:17:42 +0200 |
commit | fe6fc59ee75f44acdaac0abc757c687916d4618a (patch) | |
tree | a3a0c525744fc7b22ef3f64abc7249af75b9422a /docs/markdown/Syntax.md | |
parent | 5bb863c891a2db7bc7eb0b139dc44e84b72c0d6e (diff) | |
download | meson-fe6fc59ee75f44acdaac0abc757c687916d4618a.zip meson-fe6fc59ee75f44acdaac0abc757c687916d4618a.tar.gz meson-fe6fc59ee75f44acdaac0abc757c687916d4618a.tar.bz2 |
dict: add since annotations
Diffstat (limited to 'docs/markdown/Syntax.md')
-rw-r--r-- | docs/markdown/Syntax.md | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/docs/markdown/Syntax.md b/docs/markdown/Syntax.md index 69b3f52..42002f4 100644 --- a/docs/markdown/Syntax.md +++ b/docs/markdown/Syntax.md @@ -304,6 +304,8 @@ my_dict = {'foo': 42, 'foo': 43} Dictionaries are immutable. +Dictionaries are available since 0.47.0. + Visit the [Reference Manual](Reference-manual.md#dictionary-object) to read about the methods exposed by dictionaries. @@ -377,7 +379,8 @@ endforeach ### Foreach with a dictionary Here's an example of you could iterate a set of components that -should be compiled in according to some configuration. +should be compiled in according to some configuration. This uses +a [dictionary][dictionaries], which is available since 0.47.0. ```meson components = { |