Fix typo in dataclasses documentation (#27360)

"affect" -> "effect"
This commit is contained in:
thomkeh 2021-07-26 13:39:45 +01:00 committed by GitHub
parent ae0a2b7562
commit aa0e4a64b0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -172,7 +172,7 @@ Module contents
- ``kw_only``: If true (the default value is ``False``), then all
fields will be marked as keyword-only. If a field is marked as
keyword-only, then the only affect is that the :meth:`__init__`
keyword-only, then the only effect is that the :meth:`__init__`
parameter generated from a keyword-only field must be specified
with a keyword when :meth:`__init__` is called. There is no
effect on any other aspect of dataclasses. See the