[doc] Add link to Generic in typing (GH-22125)

This commit is contained in:
Andre Delfino 2020-09-07 02:29:38 -03:00 committed by GitHub
parent 67c998de24
commit 5bfd60fc2b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -818,7 +818,7 @@ These are not used in annotations. They are building blocks for creating generic
Type variables exist primarily for the benefit of static type
checkers. They serve as the parameters for generic types as well
as for generic function definitions. See class Generic for more
as for generic function definitions. See :class:`Generic` for more
information on generic types. Generic functions work as follows::
def repeat(x: T, n: int) -> Sequence[T]: