diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2019-09-03 17:50:39 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-03 17:50:39 +0530 |
commit | 53830038ac9672e94dcf88265b084cdc88cd7517 (patch) | |
tree | 583a03247daccfbfa3fc91bc9c8ff0987d6150cb | |
parent | 41b0fae0a940fdd718540e5ad51815bc4a30ce4e (diff) | |
download | meson-53830038ac9672e94dcf88265b084cdc88cd7517.zip meson-53830038ac9672e94dcf88265b084cdc88cd7517.tar.gz meson-53830038ac9672e94dcf88265b084cdc88cd7517.tar.bz2 |
docs/syntax: fix typo in dict example [skip ci]
-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 66b6ad3..b96e6e1 100644 --- a/docs/markdown/Syntax.md +++ b/docs/markdown/Syntax.md @@ -347,7 +347,7 @@ about the methods exposed by dictionaries. Since 0.49.0, you can check if a dictionary contains a key like this: ```meson -my_dict = {'foo': 42, 'foo': 43} +my_dict = {'foo': 42, 'bar': 43} if 'foo' in my_dict # This condition is true endif |