summaryrefslogtreecommitdiff
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
parent60b0c90efa801c758911bdc4c7949db6809eb3f4 (diff)
parent5b6d020acd9497993a575f317ae66fdaed82d813 (diff)
downloadMPC-8ca06216a8233c55f7015fbfc7410590505e33de.tar.gz
Merge pull request #169 from mitza-oci/master
fix typos
-rw-r--r--docs/html/MakeProjectCreator.html2
-rw-r--r--modules/StringProcessor.pm2
2 files changed, 2 insertions, 2 deletions
diff --git a/docs/html/MakeProjectCreator.html b/docs/html/MakeProjectCreator.html
index bede62d4..69fc32c2 100644
--- a/docs/html/MakeProjectCreator.html
+++ b/docs/html/MakeProjectCreator.html
@@ -8204,7 +8204,7 @@ class="Code">specific</em> clause.
<p class="Code">
&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
- &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;in that case this aregument can be the Perl module.
+ &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;in that case this argument can be the Perl module.
</p>
<p class="Code">
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\"");
}