From 5f8aedfa8be0f35354689558276e58e7ad574203 Mon Sep 17 00:00:00 2001 From: Nirbheek Chauhan Date: Wed, 5 Dec 2018 08:20:09 +0530 Subject: [PATCH] Fix typos in kwargdict snippet [skip ci] --- docs/markdown/snippets/kwargdict.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/markdown/snippets/kwargdict.md b/docs/markdown/snippets/kwargdict.md index 47c54d56e..509a3e7a8 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.