diff options
author | Lance Stout <lancestout@gmail.com> | 2012-01-02 13:10:46 -0800 |
---|---|---|
committer | Lance Stout <lancestout@gmail.com> | 2012-01-02 13:10:46 -0800 |
commit | fb5a6a7d715e91e291971264b0326580b387465b (patch) | |
tree | f9e839b081bec58125320bc0f7ab04434484302b /examples/send_client.py | |
parent | 1b0fd76b45bb1c6e6409aa6e3e0b0c2edf5ba374 (diff) | |
parent | 7d1c5f4a2bb31cc3596effb73119682051eb834d (diff) | |
download | slixmpp-fb5a6a7d715e91e291971264b0326580b387465b.tar.gz slixmpp-fb5a6a7d715e91e291971264b0326580b387465b.tar.bz2 slixmpp-fb5a6a7d715e91e291971264b0326580b387465b.tar.xz slixmpp-fb5a6a7d715e91e291971264b0326580b387465b.zip |
Merge pull request #132 from rhcarvalho/master
Fix a typo in several files.
Diffstat (limited to 'examples/send_client.py')
-rwxr-xr-x | examples/send_client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/send_client.py b/examples/send_client.py index adf5fcc6..caf47687 100755 --- a/examples/send_client.py +++ b/examples/send_client.py @@ -45,7 +45,7 @@ class SendMsgBot(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 SendMsgBot(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: |