summaryrefslogtreecommitdiff
path: root/NetWare
diff options
context:
space:
mode:
authorDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2020-04-23 14:33:05 +0100
committerDagfinn Ilmari Mannsåker <ilmari@ilmari.org>2020-05-22 10:45:06 +0100
commita3815e44b8fba04704944693e426f3f47362d3ff (patch)
tree6b3f332bf90d50e6d3c8320ad29a05b83ae5aef0 /NetWare
parent49704e1a7f79e12814aa5fa55084f1105e2b27ec (diff)
downloadperl-a3815e44b8fba04704944693e426f3f47362d3ff.tar.gz
Fix a bunch of repeated-word typos
Mostly in comments and docs, but some in diagnostic messages and one case of 'or die die'.
Diffstat (limited to 'NetWare')
-rw-r--r--NetWare/Makefile2
-rw-r--r--NetWare/nw5.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/NetWare/Makefile b/NetWare/Makefile
index 5ba2515918..821fffaddb 100644
--- a/NetWare/Makefile
+++ b/NetWare/Makefile
@@ -520,7 +520,7 @@ USE_IMP_SYS = define
#
# set this to your email address (perl will guess a value from
-# from your loginname and your hostname, which may not be right)
+# your loginname and your hostname, which may not be right)
#
#EMAIL =
diff --git a/NetWare/nw5.c b/NetWare/nw5.c
index 531b308efa..46642a4d59 100644
--- a/NetWare/nw5.c
+++ b/NetWare/nw5.c
@@ -57,7 +57,7 @@ In this code, wherever there is a FILE *, the error condition is checked; and o
then the corresponding operation is done. Otherwise the error value is returned.
This is done because the file operations like "open" in the Perl code returns the FILE *,
returning a valid value if the file is found or NULL when the particular file is not found.
-Now, if the return value is NULL, then an operation say "fgets", "fopen" etc. using this this NULL value
+Now, if the return value is NULL, then an operation say "fgets", "fopen" etc. using this NULL value
for FILE * will abend the server. If the check is made then an operation on a non existing file
does not abend the server.
**/