From 8d095c6378666e6d5f6cabc9e485c9db2618ff88 Mon Sep 17 00:00:00 2001 From: Berker Peksag Date: Mon, 21 Aug 2017 10:16:22 +0300 Subject: [PATCH] Removed redundant backticks in docs/releases/1.8.txt --- docs/releases/1.8.txt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/releases/1.8.txt b/docs/releases/1.8.txt index 3e5778417bc..94eff8f92d5 100644 --- a/docs/releases/1.8.txt +++ b/docs/releases/1.8.txt @@ -1442,11 +1442,11 @@ Old :tfilter:`unordered_list` syntax An older (pre-1.0), more restrictive and verbose input format for the :tfilter:`unordered_list` template filter has been deprecated:: - ``['States', [['Kansas', [['Lawrence', []], ['Topeka', []]]], ['Illinois', []]]]`` + ['States', [['Kansas', [['Lawrence', []], ['Topeka', []]]], ['Illinois', []]]] Using the new syntax, this becomes:: - ``['States', ['Kansas', ['Lawrence', 'Topeka'], 'Illinois']]`` + ['States', ['Kansas', ['Lawrence', 'Topeka'], 'Illinois']] ``django.forms.Field._has_changed()`` -------------------------------------