Fix typo in rpc/server.py and notify/listener.py

1. "messaging configuration configuration" to "messaging configuration"

Change-Id: Icda5d2df67cc4d2d0e0cb3a453d0b04dd998e5f4
This commit is contained in:
Daisuke Fujita 2015-10-09 22:20:51 +09:00
parent 367e28b0f1
commit 64fb61d37c
2 changed files with 2 additions and 2 deletions

View File

@ -24,7 +24,7 @@ A transport can be obtained simply by calling the get_transport() method::
transport = messaging.get_transport(conf)
which will load the appropriate transport driver according to the user's
messaging configuration configuration. See get_transport() for more details.
messaging configuration. See get_transport() for more details.
The target supplied when creating a notification listener expresses the topic
and - optionally - the exchange to listen on. See Target for more details

View File

@ -25,7 +25,7 @@ A transport can be obtained simply by calling the get_transport() method::
transport = messaging.get_transport(conf)
which will load the appropriate transport driver according to the user's
messaging configuration configuration. See get_transport() for more details.
messaging configuration. See get_transport() for more details.
The target supplied when creating an RPC server expresses the topic, server
name and - optionally - the exchange to listen on. See Target for more details