PEP 635: Minor typo fix in code sample (#3871)

Looks like an unclosed f-string.
This commit is contained in:
Mariatta 2024-07-24 15:56:04 -07:00 committed by GitHub
parent 06debd965c
commit d0bbb6bdbb
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -1118,7 +1118,7 @@ be emulated by a user-defined class as follows::
The proposal was to combine patterns with type annotations::
match x:
case [a: int, b: str]: print(f"An int {a} and a string {b}:)
case [a: int, b: str]: print(f"An int {a} and a string {b}:")
case [a: int, b: int, c: int]: print("Three ints", a, b, c)
...