Skip to content

Commit f5b8e92

Browse files
authored
PEP 3101: Resolve dangling hyphens (#3360)
1 parent eaa4742 commit f5b8e92

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

pep-3101.txt

+4-4
Original file line numberDiff line numberDiff line change
@@ -310,10 +310,10 @@ The available integer presentation types are::
310310
Unicode character before printing.
311311
'd' - Decimal Integer. Outputs the number in base 10.
312312
'o' - Octal format. Outputs the number in base 8.
313-
'x' - Hex format. Outputs the number in base 16, using lower-
314-
case letters for the digits above 9.
315-
'X' - Hex format. Outputs the number in base 16, using upper-
316-
case letters for the digits above 9.
313+
'x' - Hex format. Outputs the number in base 16, using
314+
lower-case letters for the digits above 9.
315+
'X' - Hex format. Outputs the number in base 16, using
316+
upper-case letters for the digits above 9.
317317
'n' - Number. This is the same as 'd', except that it uses the
318318
current locale setting to insert the appropriate
319319
number separator characters.

0 commit comments

Comments
 (0)