summaryrefslogtreecommitdiffstats
path: root/unix/tclUnixFCmd.c
diff options
context:
space:
mode:
authordkf <donal.k.fellows@manchester.ac.uk>2024-09-21 08:41:51 (GMT)
committerdkf <donal.k.fellows@manchester.ac.uk>2024-09-21 08:41:51 (GMT)
commit475d0498c66c8bbc7a0acbb9d1c58abe3fa78b52 (patch)
tree19994fe7776bae05ebec5874f3239f8992393498 /unix/tclUnixFCmd.c
parent4248deef0b06ef0e95625e3b40a677427dc55f78 (diff)
downloadtcl-475d0498c66c8bbc7a0acbb9d1c58abe3fa78b52.zip
tcl-475d0498c66c8bbc7a0acbb9d1c58abe3fa78b52.tar.gz
tcl-475d0498c66c8bbc7a0acbb9d1c58abe3fa78b52.tar.bz2
Fix ungrammatical doubling of words in commentsminor
Diffstat (limited to 'unix/tclUnixFCmd.c')
-rw-r--r--unix/tclUnixFCmd.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/unix/tclUnixFCmd.c b/unix/tclUnixFCmd.c
index fab9c32..d9429c8 100644
--- a/unix/tclUnixFCmd.c
+++ b/unix/tclUnixFCmd.c
@@ -2066,7 +2066,7 @@ TclpObjNormalizePath(
if (haveRealpath) {
if (nextCheckpoint == 0) {
/*
- * The path contains at most one component, e.g. '/foo' or '/', so
+ * The path contains at most one component, e.g. '/foo' or '/',
* so there is nothing to resolve. Also, on some platforms
* 'Realpath' transforms an empty string into the normalized pwd,
* which is the wrong answer.
@@ -2097,7 +2097,7 @@ TclpObjNormalizePath(
* Uncommenting this would mean that this native filesystem
* routine claims the path is normalized if the file exists,
* which would permit the caller to avoid iterating through
- * other filesystems filesystems. Saving lots of calls is
+ * other filesystems. Saving lots of calls is
* probably worth the extra access() time, but in the common
* case that no other filesystems are registered this is an
* unnecessary expense.