From 73ce5e73a6104dec677538b21dbf6a620a2fc6be Mon Sep 17 00:00:00 2001 From: Sandro Tosi Date: Mon, 31 Oct 2011 19:19:26 +0100 Subject: [PATCH] really use backticks in string conversion definition; thanks to Jonathan Blakes from docs@ --- Doc/reference/expressions.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/reference/expressions.rst b/Doc/reference/expressions.rst index e2cc80daa6e..084c6e4757b 100644 --- a/Doc/reference/expressions.rst +++ b/Doc/reference/expressions.rst @@ -347,7 +347,7 @@ A string conversion is an expression list enclosed in reverse (a.k.a. backward) quotes: .. productionlist:: - string_conversion: "'" `expression_list` "'" + string_conversion: "`" `expression_list` "`" A string conversion evaluates the contained expression list and converts the resulting object into a string according to rules specific to its type.