Skip to content

Commit

Permalink
Docs: fix tiny typo in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
biqqles committed May 31, 2021
1 parent 8631269 commit 866cd0b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ dataclassy has several important differences from dataclasses, mainly reflective
|*mutable defaults* |`a: Dict = field(default_factory=dict)` |`a: Dict = {}` |
|*dynamic defaults* |`b: MyClass = field(default_factory=MyClass)`|`b: MyClass = factory(MyClass)` |
|*field excluded from `repr`* |`c: int = field(repr=False)` |`Internal` type wrapper or `_name` |
|*"late init" field* |`d: int = field(init=False`) |`d: int = None` |
|*"late init" field* |`d: int = field(init=False)` |`d: int = None` |

There are a couple of minor differences, too:

Expand Down

0 comments on commit 866cd0b

Please sign in to comment.