summaryrefslogtreecommitdiff
path: root/modules
diff options
context:
space:
mode:
authorAdam Mitz <mitza@objectcomputing.com>2023-01-04 08:56:40 -0600
committerGitHub <noreply@github.com>2023-01-04 08:56:40 -0600
commit8ca06216a8233c55f7015fbfc7410590505e33de (patch)
treeb1022a8b598df86e41fa96abd22aa8cf05004f3a /modules
parent60b0c90efa801c758911bdc4c7949db6809eb3f4 (diff)
parent5b6d020acd9497993a575f317ae66fdaed82d813 (diff)
downloadMPC-8ca06216a8233c55f7015fbfc7410590505e33de.tar.gz
Merge pull request #169 from mitza-oci/master
fix typos
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\"");
}