aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNirbheek Chauhan <nirbheek@centricular.com>2019-09-03 17:50:39 +0530
committerGitHub <noreply@github.com>2019-09-03 17:50:39 +0530
commit53830038ac9672e94dcf88265b084cdc88cd7517 (patch)
tree583a03247daccfbfa3fc91bc9c8ff0987d6150cb
parent41b0fae0a940fdd718540e5ad51815bc4a30ce4e (diff)
downloadmeson-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.md2
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