From bd9b324a99ec77026c3dd0f749e28c919fe5ee59 Mon Sep 17 00:00:00 2001 From: Marti Raudsepp Date: Wed, 3 Apr 2013 16:49:48 +0300 Subject: [PATCH] Fix typo in transaction.Atomic docstring --- django/db/transaction.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/db/transaction.py b/django/db/transaction.py index 0aed0aa4f4..48e7f900dd 100644 --- a/django/db/transaction.py +++ b/django/db/transaction.py @@ -196,7 +196,7 @@ class Atomic(object): connection. None denotes the absence of a savepoint. This allows reentrancy even if the same AtomicWrapper is reused. For - example, it's possible to define `oa = @atomic('other')` and use `@ao` or + example, it's possible to define `oa = @atomic('other')` and use `@oa` or `with oa:` multiple times. Since database connections are thread-local, this is thread-safe.