From cf0402f165e5331944c547da390a690fbbf111a7 Mon Sep 17 00:00:00 2001 From: frazar <914950+frazar@users.noreply.github.com> Date: Wed, 19 Jul 2023 16:28:30 +0200 Subject: [PATCH] Fix typo in doc/parsing.rst --- doc/parsing.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/parsing.rst b/doc/parsing.rst index 5ceab636..d89b7e89 100644 --- a/doc/parsing.rst +++ b/doc/parsing.rst @@ -85,7 +85,7 @@ And your args will look like this : args = parser.parse_args() args['name'] # ['bob', 'sue', 'joe'] -If you expect a coma separated list, use the ``action='split'``: +If you expect a comma-separated list, use the ``action='split'``: .. code-block:: python