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