summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
Diffstat (limited to 'modules')
-rw-r--r--modules/StringProcessor.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/StringProcessor.pm b/modules/StringProcessor.pm
index 3d71e951..270b09e7 100644
--- a/modules/StringProcessor.pm
+++ b/modules/StringProcessor.pm
@@ -57,7 +57,7 @@ sub process_special {
## Un-escape all other characters. Using eval allows the user to pass
## escaped characters that will be converted to their actual character
- ## couterpart (i.e., \n, \f, etc).
+ ## counterpart (i.e., \n, \f, etc).
if (index($line, '\\') != -1) {
eval("\$line = \"$line\"");
}