summaryrefslogtreecommitdiff
path: root/ext/DynaLoader
diff options
context:
space:
mode:
authorPeter Prymmer <PPrymmer@factset.com>2001-01-19 10:43:14 -0800
committerJarkko Hietaniemi <jhi@iki.fi>2001-01-20 22:25:53 +0000
commit09c70b438e667321033aba805e769bb317ded049 (patch)
tree995e4e1981fe43a415931b05a8f013b9df27cd2c /ext/DynaLoader
parentb8608ca8c9e78a6734e186a0a12d0ebdc215555b (diff)
downloadperl-09c70b438e667321033aba805e769bb317ded049.tar.gz
minor typos in some dl_$foo.xs files
Message-ID: <Pine.OSF.4.10.10101191841080.61505-100000@aspara.forte.com> p4raw-id: //depot/perl@8490
Diffstat (limited to 'ext/DynaLoader')
-rw-r--r--ext/DynaLoader/dl_aix.xs2
-rw-r--r--ext/DynaLoader/dl_dlopen.xs2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/DynaLoader/dl_aix.xs b/ext/DynaLoader/dl_aix.xs
index 89b84396ef..b2c92d8070 100644
--- a/ext/DynaLoader/dl_aix.xs
+++ b/ext/DynaLoader/dl_aix.xs
@@ -305,7 +305,7 @@ static void caterr(char *s)
p++;
switch(atoi(s)) {
case L_ERROR_TOOMANY:
- strcat(errbuf, "to many errors");
+ strcat(errbuf, "too many errors");
break;
case L_ERROR_NOLIB:
strcat(errbuf, "can't load library");
diff --git a/ext/DynaLoader/dl_dlopen.xs b/ext/DynaLoader/dl_dlopen.xs
index 350b0d5074..e1b2a82410 100644
--- a/ext/DynaLoader/dl_dlopen.xs
+++ b/ext/DynaLoader/dl_dlopen.xs
@@ -112,7 +112,7 @@
SaveError("%s",dlerror()) ;
Note that SaveError() takes a printf format string. Use a "%s" as
- the first parameter if the error may contain and % characters.
+ the first parameter if the error may contain any % characters.
*/