diff --git a/README.rst b/README.rst index 98c5f37..6a173ab 100644 --- a/README.rst +++ b/README.rst @@ -87,7 +87,7 @@ API Reference ``toml.dumps(o)`` **Stringifies input dict as toml** -:Arguments: +:Args: o: Object to dump into toml :Returns: diff --git a/toml.py b/toml.py index ace940e..50d848b 100644 --- a/toml.py +++ b/toml.py @@ -649,7 +649,7 @@ def _load_array(a): return retval def dump(o, f): - """Writes out dict as toml to file + """Writes out dict as toml to a file Args: o: Object to dump into toml @@ -671,7 +671,7 @@ def dump(o, f): def dumps(o): """Stringifies input dict as toml - Arguments: + Args: o: Object to dump into toml Returns: