Skip to content

Commit b1d580f

Browse files
committed
Tweak README
1 parent f81d9af commit b1d580f

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

README.md

+5-5
Original file line numberDiff line numberDiff line change
@@ -62,12 +62,12 @@ Converts unstructured data into structured data, recursively, according to your
6262
The following types are supported:
6363

6464
- `typing.Optional[T]` and its 3.10+ form, `T | None`.
65-
- `list[T]`, `typing.List[T]`, `typing.MutableSequence[T]`, `typing.Sequence[T]` convert to a lists.
65+
- `list[T]`, `typing.List[T]`, `typing.MutableSequence[T]`, `typing.Sequence[T]` convert to lists.
6666
- `tuple` and `typing.Tuple` (both variants, `tuple[T, ...]` and `tuple[X, Y, Z]`).
67-
- `set[T]`, `typing.MutableSet[T]`, and `typing.Set[T]` convert to a sets.
68-
- `frozenset[T]`, and `typing.FrozenSet[T]` convert to a frozensets.
69-
- `dict[K, V]`, `typing.Dict[K, V]`, `typing.MutableMapping[K, V]`, and `typing.Mapping[K, V]` convert to a dictionaries.
70-
- [`typing.TypedDict`](https://docs.python.org/3/library/typing.html#typing.TypedDict), ordinary and generic.
67+
- `set[T]`, `typing.MutableSet[T]`, and `typing.Set[T]` convert to sets.
68+
- `frozenset[T]`, and `typing.FrozenSet[T]` convert to frozensets.
69+
- `dict[K, V]`, `typing.Dict[K, V]`, `typing.MutableMapping[K, V]`, and `typing.Mapping[K, V]` convert to dictionaries.
70+
- [`typing.TypedDict`](https://docs.python.org/3/library/typing.html#typing.TypedDict), both ordinary and generic.
7171
- [`typing.NewType`](https://docs.python.org/3/library/typing.html#newtype)
7272
- [PEP 695 type aliases](https://docs.python.org/3/library/typing.html#type-aliases) on 3.12+
7373
- _attrs_ classes with simple attributes and the usual `__init__`[^simple].

0 commit comments

Comments
 (0)