summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorAsk Solem <askh@opera.com>2010-08-04 15:51:54 +0200
committerAsk Solem <askh@opera.com>2010-08-04 15:51:54 +0200
commit4c16dbbeb360d31ce3cd54b2888e6be6be82a0b2 (patch)
tree10380d0f6f43d9a0dd9d73487f596b880ff09e41 /docs
parent014b1159f4e7c3617520fe558a5ebdd6e5851b1d (diff)
downloadkombu-4c16dbbeb360d31ce3cd54b2888e6be6be82a0b2.tar.gz
UserGuide: Simple: Fixed typos
Diffstat (limited to 'docs')
-rw-r--r--docs/userguide/simple.rst16
1 files changed, 7 insertions, 9 deletions
diff --git a/docs/userguide/simple.rst b/docs/userguide/simple.rst
index c2ba7dfd..ed467bbf 100644
--- a/docs/userguide/simple.rst
+++ b/docs/userguide/simple.rst
@@ -55,7 +55,7 @@ method::
This connection will use the default connection settings, which is using
the localhost host, default port, username ``guest``,
-passowrd ``guest`` and virtual host "/". A connection without arguments
+password ``guest`` and virtual host "/". A connection without arguments
is the same as::
>>> BrokerConnection(hostname="localhost",
@@ -64,16 +64,14 @@ is the same as::
... virtual_host="/",
... port=6379)
-The default port is transport specific, for AMQP transports this is 6379.
+The default port is transport specific, for AMQP this is 6379.
-Other fields may also have different meanings depending on the transport
-used. For example, the ``virtual_host`` argument is used as the database
-number in the Redis transport.
-
-See the reference documentation for
-:class:`~kombu.connection.BrokerConnection` for a full list of arguments
-supported.
+Other fields may also have different meaning depending on the transport
+used. For example, the Redis transport uses the ``virtual_host`` argument as
+the redis database number.
+See the :class:`~kombu.connection.BrokerConnection` reference documentation
+for more information and a full list of the arguments supported.
Sending and receiving messages
==============================