Change "iff" -> "if" in example docstrings.

This commit is contained in:
Guido van Rossum 2016-10-20 21:35:42 -07:00
parent 68ef9a665b
commit 2ec55d541d
1 changed files with 2 additions and 2 deletions

View File

@ -1916,7 +1916,7 @@ Example::
def send_email(address, sender, cc, bcc, subject, body):
# type: (...) -> bool
"""Send an email message. Return True iff successful."""
"""Send an email message. Return True if successful."""
<code>
Sometimes you have a long list of parameters and specifying their
@ -1935,7 +1935,7 @@ last argument (if any) should precede the close parenthesis. Example::
body=None # type: List[str]
):
# type: (...) -> bool
"""Send an email message. Return True iff successful."""
"""Send an email message. Return True if successful."""
<code>
Notes: