diff options
author | Rodolfo Carvalho <rhcarvalho@gmail.com> | 2012-01-02 18:59:39 -0200 |
---|---|---|
committer | Rodolfo Carvalho <rhcarvalho@gmail.com> | 2012-01-02 18:59:39 -0200 |
commit | 7d1c5f4a2bb31cc3596effb73119682051eb834d (patch) | |
tree | 5a16df89bf0ede5d7de0462a3aa7ce385ce526dc /examples/echo_client.py | |
parent | 46e93bea09c05ab1183fd94981dcaa2654e5d0fd (diff) | |
download | slixmpp-7d1c5f4a2bb31cc3596effb73119682051eb834d.tar.gz slixmpp-7d1c5f4a2bb31cc3596effb73119682051eb834d.tar.bz2 slixmpp-7d1c5f4a2bb31cc3596effb73119682051eb834d.tar.xz slixmpp-7d1c5f4a2bb31cc3596effb73119682051eb834d.zip |
Fix a typo in several files.
This fixes several instances of "intial" for "initial".
Diffstat (limited to 'examples/echo_client.py')
-rwxr-xr-x | examples/echo_client.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/echo_client.py b/examples/echo_client.py index db0064f9..7e553c4a 100755 --- a/examples/echo_client.py +++ b/examples/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: |