diff options
author | Mathieu Duponchelle <mathieu@centricular.com> | 2018-05-21 00:19:31 +0200 |
---|---|---|
committer | Mathieu Duponchelle <mathieu@centricular.com> | 2018-05-21 00:19:31 +0200 |
commit | 10e7566ed84251dcec6ee4ff3cc721e38fb90457 (patch) | |
tree | 5e5bf0834cc25ac85038e07ae5d63f0d6bfe07ba /docs | |
parent | f59d7bafd24c2ff2c96600b471704d825e7c1a7d (diff) | |
download | meson-10e7566ed84251dcec6ee4ff3cc721e38fb90457.zip meson-10e7566ed84251dcec6ee4ff3cc721e38fb90457.tar.gz meson-10e7566ed84251dcec6ee4ff3cc721e38fb90457.tar.bz2 |
dict: fix CI issues
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/snippets/dict_builtin.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/markdown/snippets/dict_builtin.md b/docs/markdown/snippets/dict_builtin.md index b60fd0a..1bd24ce 100644 --- a/docs/markdown/snippets/dict_builtin.md +++ b/docs/markdown/snippets/dict_builtin.md @@ -14,6 +14,6 @@ foo = dict.get('foo') foobar = dict.get('foobar', 'fallback-value') foreach key, value : dict - # Do something with key and value -#endforeach + Do something with key and value +endforeach ``` |