"of" should be "or"
This commit is contained in:
Johnny Gérard 2019-02-01 19:05:38 +01:00 committed by Chris Angelico
parent e642c5a58e
commit 9528786fa7
1 changed files with 1 additions and 1 deletions

View File

@ -372,7 +372,7 @@ generic manner. Consider two examples:
examples[2] = None # rejected by the type checker
- The following function can take two arguments of type ``int`` and return
an ``int``, of take two arguments of type ``float`` and return
an ``int``, or take two arguments of type ``float`` and return
a ``float``, etc.::
def add(x, y):