From e6846574729d3d0896df7d44b9aa4d8d66433a28 Mon Sep 17 00:00:00 2001 From: Claudia Pellegrino Date: Sun, 11 Aug 2024 13:41:19 +0200 Subject: [PATCH] PEP 750: fix specifier mixup so that they are consistent with code example (#3900) --- peps/pep-0750.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/peps/pep-0750.rst b/peps/pep-0750.rst index 399a1e9ff..53702d66f 100644 --- a/peps/pep-0750.rst +++ b/peps/pep-0750.rst @@ -207,9 +207,9 @@ You can see each of the ``Interpolation`` parts getting extracted: - The lambda expression to call and get the value in the scope it was defined - The raw string of the interpolation (``name``) -- The Python "conversion" field (``s``) +- The Python "conversion" field (``r``) - Any `format specification `_ - (``r``) + (``s``) Specification =============