docs/syntax: fix typo in dict example [skip ci]

pull/5881/head
Nirbheek Chauhan 6 years ago committed by GitHub
parent 41b0fae0a9
commit 53830038ac
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      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

Loading…
Cancel
Save