summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAsk Solem <ask@celeryproject.org>2012-12-06 13:31:21 +0000
committerAsk Solem <ask@celeryproject.org>2012-12-06 13:31:21 +0000
commit4dd702333622d9631b0580e4b4ae6863053caeca (patch)
tree0e9730001be6d622f59d9c566301aca3295b975b /docs
parent72d0d9d8ce511dd7628d73ba50fb6972b217afef (diff)
downloadkombu-4dd702333622d9631b0580e4b4ae6863053caeca.tar.gz
Fixes typo (conn.connected is a property). Closes #182
Diffstat (limited to 'docs')
-rw-r--r--docs/userguide/connections.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/userguide/connections.rst b/docs/userguide/connections.rst
index aa88add8..12e9249d 100644
--- a/docs/userguide/connections.rst
+++ b/docs/userguide/connections.rst
@@ -27,7 +27,7 @@ method::
You can also check whether the connection is connected::
- >>> connection.connected()
+ >>> connection.connected
True
Connections must always be closed after use::