Skip to content

Commit

Permalink
📝 update documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
techouse committed May 27, 2024
1 parent ef24fc5 commit 1da5567
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ dictionaries
value: t.Optional[t.Union[str, t.Dict[str, t.Any]]],
options: DecodeOptions = DecodeOptions(),
) -> t.Dict[str, t.Any]:
"""Decodes a str or Dict[str, Any] into a Dict.
"""Decodes a query string into a Dict[str, Any].
Providing custom DecodeOptions will override the default behavior."""
pass
Expand Down
2 changes: 1 addition & 1 deletion docs/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ dictionaries
value: t.Optional[t.Union[str, t.Dict[str, t.Any]]],
options: DecodeOptions = DecodeOptions(),
) -> t.Dict[str, t.Any]:
"""Decodes a str or Dict[str, Any] into a Dict.
"""Decodes a query string into a Dict[str, Any].
Providing custom DecodeOptions will override the default behavior."""
pass
Expand Down
2 changes: 1 addition & 1 deletion src/qs_codec/decode.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ def decode(
options: DecodeOptions = DecodeOptions(),
) -> t.Dict[str, t.Any]:
"""
Decodes a ``str`` or ``t.Dict[str, t.Any]`` into a ``dict``.
Decodes a query string into a ``Dict[str, Any]``.
Providing custom ``DecodeOptions`` will override the default behavior.
"""
Expand Down

0 comments on commit 1da5567

Please sign in to comment.