diff options
Diffstat (limited to 'examples/proxy_echo_client.py')
-rwxr-xr-x | examples/proxy_echo_client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/proxy_echo_client.py b/examples/proxy_echo_client.py index 6655ec59..25bfc891 100755 --- a/examples/proxy_echo_client.py +++ b/examples/proxy_echo_client.py @@ -40,7 +40,7 @@ class EchoBot(sleekxmpp.ClientXMPP): # The session_start event will be triggered when # the bot establishes its connection with the server # and the XML streams are ready for use. We want to - # listen for this event so that we we can intialize + # listen for this event so that we we can initialize # our roster. self.add_event_handler("session_start", self.start) @@ -54,7 +54,7 @@ class EchoBot(sleekxmpp.ClientXMPP): Process the session_start event. Typical actions for the session_start event are - requesting the roster and broadcasting an intial + requesting the roster and broadcasting an initial presence stanza. Arguments: |