From 48493636d3994d1b80d2bf213283240521d368a0 Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 2 Apr 2019 03:18:06 -0400 Subject: [PATCH] [2.2.x] Fixed typo in docs/releases/2.2.txt. Backport of 851d9eac23e08ff10a2d6fe5368b02798761663c from master --- docs/releases/2.2.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/releases/2.2.txt b/docs/releases/2.2.txt index baaea6f529..2639aa886a 100644 --- a/docs/releases/2.2.txt +++ b/docs/releases/2.2.txt @@ -302,7 +302,7 @@ For example, in older versions of Django:: class SubAdmin(BaseAdmin): actions = ['b'] -``SubAdmin`` will have actions ``'a'`` and ``'b'``. +``SubAdmin`` would have actions ``'a'`` and ``'b'``. Now ``actions`` follows standard Python inheritance. To get the same result as before::