Small docs fixes

This commit is contained in:
Samuel Vasko 2017-03-05 22:04:51 +00:00
parent 62df72c1df
commit fc0f755254
2 changed files with 3 additions and 3 deletions

View File

@ -87,7 +87,7 @@ API Reference
``toml.dumps(o)`` **Stringifies input dict as toml**
:Arguments:
:Args:
o: Object to dump into toml
:Returns:

View File

@ -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: