diff --git a/ikogPlugin.py b/ikogPlugin.py
index ad9876d..0bd7521 100644
--- a/ikogPlugin.py
+++ b/ikogPlugin.py
@@ -1,11 +1,11 @@
-#### The ikogPlugin provides a mechanism for modifying the behaviour of
-### iKog. Modify this file for your own purposes.
+#### The ikogPlugin provides a mechanism for modifying the behaviour of
+### iKog. Modify this file for your own purposes.
### The file merely needs to be saved in the same location as iKog.py.
###
-### It can be quite tricky to see where the functions are called but the
-### default implementation adds tags, which although disrupting the output,
+### It can be quite tricky to see where the functions are called but the
+### default implementation adds tags, which although disrupting the output,
### make it relatively easy to see where the methods are called.
-###
+###
### To make any practical use off the methods you will need to get out
### your regular expressions books and parse the strings - sorry :)
### Steve
@@ -27,7 +27,7 @@ def getRuler():
### Called after a valid string is entered from the keyboad.
### The function must return the string modified accordingly.
### This function must be modified with care as it can disrupt the operation
-### of iKog commands. This default implementation merely replaces
+### of iKog commands. This default implementation merely replaces
### SB with Steve Butler.
### @param entry the data entered by the user.
### @return the modified entry that is to be passed back to iKog.
@@ -74,7 +74,7 @@ def modifyOutput(text):
### Called when the html header is written to file.
-### return True if you want the standard header written. False if you
+### return True if you want the standard header written. False if you
### are doing your own part of the postHtmlHeader() function.
def showHeader():
return True
@@ -85,7 +85,7 @@ def postHtmlHeader():
return "[postHtmlHeader][/postHtmlHeader]"
### Called when the html footer is written to file.
-### return True if you want the standard footer written. False if you
+### return True if you want the standard footer written. False if you
### are doing your own as part of the preHtmlFooter() function.
def showFooter():
return True