From 2b9e7124c6c938c129e030a9b550133e967a447e Mon Sep 17 00:00:00 2001 From: Mariatta Date: Fri, 15 Dec 2017 09:30:04 -0800 Subject: [PATCH] F-strings docs: link to Format Specifiers Link to the Format Specification Mini Language section from f-strings' documentation. --- Doc/reference/lexical_analysis.rst | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Doc/reference/lexical_analysis.rst b/Doc/reference/lexical_analysis.rst index ee3fbc13e2bcace..86e55e4d9c877c5 100644 --- a/Doc/reference/lexical_analysis.rst +++ b/Doc/reference/lexical_analysis.rst @@ -656,7 +656,8 @@ the final value of the whole string. Top-level format specifiers may include nested replacement fields. These nested fields may include their own conversion fields and -format specifiers, but may not include more deeply-nested replacement fields. +:ref:`format specifiers `, but may not include more +deeply-nested replacement fields. Formatted string literals may be concatenated, but replacement fields cannot be split across literals.