summaryrefslogtreecommitdiff
path: root/examples/adhoc_provider.py
diff options
context:
space:
mode:
authorRodolfo Carvalho <rhcarvalho@gmail.com>2012-01-02 18:59:39 -0200
committerRodolfo Carvalho <rhcarvalho@gmail.com>2012-01-02 18:59:39 -0200
commit7d1c5f4a2bb31cc3596effb73119682051eb834d (patch)
tree5a16df89bf0ede5d7de0462a3aa7ce385ce526dc /examples/adhoc_provider.py
parent46e93bea09c05ab1183fd94981dcaa2654e5d0fd (diff)
downloadslixmpp-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/adhoc_provider.py')
-rwxr-xr-xexamples/adhoc_provider.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/adhoc_provider.py b/examples/adhoc_provider.py
index cfe72755..a72158c3 100755
--- a/examples/adhoc_provider.py
+++ b/examples/adhoc_provider.py
@@ -40,7 +40,7 @@ class CommandBot(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)
@@ -49,7 +49,7 @@ class CommandBot(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:
@@ -71,7 +71,7 @@ class CommandBot(sleekxmpp.ClientXMPP):
def _handle_command(self, iq, session):
"""
- Respond to the intial request for a command.
+ Respond to the initial request for a command.
Arguments:
iq -- The iq stanza containing the command request.