From fc0f755254f2f99897d73e12b179181091746cb4 Mon Sep 17 00:00:00 2001 From: Samuel Vasko Date: Sun, 5 Mar 2017 22:04:51 +0000 Subject: [PATCH] Small docs fixes --- README.rst | 2 +- toml.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) 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: