aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMathieu Duponchelle <mathieu@centricular.com>2018-05-21 00:19:31 +0200
committerMathieu Duponchelle <mathieu@centricular.com>2018-05-21 00:19:31 +0200
commit10e7566ed84251dcec6ee4ff3cc721e38fb90457 (patch)
tree5e5bf0834cc25ac85038e07ae5d63f0d6bfe07ba /docs
parentf59d7bafd24c2ff2c96600b471704d825e7c1a7d (diff)
downloadmeson-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.md4
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
```