diff options
author | Nirbheek Chauhan <nirbheek@centricular.com> | 2018-12-05 08:20:09 +0530 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-05 08:20:09 +0530 |
commit | 5f8aedfa8be0f35354689558276e58e7ad574203 (patch) | |
tree | 92c31bfcf77acc7a50f0cfb4d37a0f26ac2fc400 /docs | |
parent | 55d79a6ba2a6ddd1b801cca45f23b3ed66b22ac7 (diff) | |
download | meson-5f8aedfa8be0f35354689558276e58e7ad574203.zip meson-5f8aedfa8be0f35354689558276e58e7ad574203.tar.gz meson-5f8aedfa8be0f35354689558276e58e7ad574203.tar.bz2 |
Fix typos in kwargdict snippet [skip ci]
Diffstat (limited to 'docs')
-rw-r--r-- | docs/markdown/snippets/kwargdict.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/markdown/snippets/kwargdict.md b/docs/markdown/snippets/kwargdict.md index 47c54d5..509a3e7 100644 --- a/docs/markdown/snippets/kwargdict.md +++ b/docs/markdown/snippets/kwargdict.md @@ -2,7 +2,7 @@ You can now specify keyword arguments for any function and method call with the `kwargs` keyword argument. This is perhaps best described -with an example. +with an example: ```meson options = {'include_directories': include_directories('inc')} @@ -20,9 +20,9 @@ executable(... include_directories: include_directories('inc')) ``` -That is, Mesn will expand the dictionary given to `kwargs` as if the +That is, Meson will expand the dictionary given to `kwargs` as if the entries in it had been given as keyword arguments directly. Note that any individual argument can be specified either directly or -with the `kwarg`` dict but not both. If a key is specified twice, it +with the `kwarg` dict but not both. If a key is specified twice, it is a hard error. |