From 851d9eac23e08ff10a2d6fe5368b02798761663c Mon Sep 17 00:00:00 2001 From: Alex Gaynor Date: Tue, 2 Apr 2019 03:18:06 -0400 Subject: [PATCH] Fixed typo in docs/releases/2.2.txt. --- 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::