From 3f7ecb512eb39f1d6b633de7f4c635430298c891 Mon Sep 17 00:00:00 2001 From: Aymeric Augustin Date: Tue, 21 May 2013 21:29:14 +0200 Subject: [PATCH] [1.5.x] Fixed #20476 -- Typo. Backport of 5d16456. --- docs/ref/class-based-views/index.txt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/ref/class-based-views/index.txt b/docs/ref/class-based-views/index.txt index a0279534166..821edc08748 100644 --- a/docs/ref/class-based-views/index.txt +++ b/docs/ref/class-based-views/index.txt @@ -32,7 +32,7 @@ A class-based view is deployed into a URL pattern using the .. admonition:: Thread safety with view arguments Arguments passed to a view are shared between every instance of a view. - This means that you shoudn't use a list, dictionary, or any other + This means that you shouldn't use a list, dictionary, or any other mutable object as an argument to a view. If you do and the shared object is modified, the actions of one user visiting your view could have an effect on subsequent users visiting the same view.