PEP 3103: Resolve uses of the default role (#3382)

This commit is contained in:
Adam Turner 2023-09-01 20:20:35 +01:00 committed by GitHub
parent cc78d2150d
commit e14830b96a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -232,7 +232,7 @@ like this::
case [*]EXPR, [*]EXPR, ...:
The `*` notation is similar to the use of prefix `*` already in use for
The ``*`` notation is similar to the use of prefix ``*`` already in use for
variable-length parameter lists and for passing computed argument
lists, and often proposed for value-unpacking (e.g. ``a, b, *c = X`` as
an alternative to ``(a, b), c = X[:2], X[2:]``).