Skip to content

Commit 2ec55d5

Browse files
committed
Change "iff" -> "if" in example docstrings.
1 parent 68ef9a6 commit 2ec55d5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

pep-0484.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1916,7 +1916,7 @@ Example::
19161916

19171917
def send_email(address, sender, cc, bcc, subject, body):
19181918
# type: (...) -> bool
1919-
"""Send an email message. Return True iff successful."""
1919+
"""Send an email message. Return True if successful."""
19201920
<code>
19211921

19221922
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::
19351935
body=None # type: List[str]
19361936
):
19371937
# type: (...) -> bool
1938-
"""Send an email message. Return True iff successful."""
1938+
"""Send an email message. Return True if successful."""
19391939
<code>
19401940

19411941
Notes:

0 commit comments

Comments
 (0)