summaryrefslogtreecommitdiff
path: root/doc/coreutils.texi
diff options
context:
space:
mode:
authorJim Meyering <jim@meyering.net>2005-06-19 13:39:51 +0000
committerJim Meyering <jim@meyering.net>2005-06-19 13:39:51 +0000
commite828977ada21cd6dc5789777f2c8bc9f64ddb1d5 (patch)
tree90d2af3c9c72d19dc178f31a4f0fab8bf3367797 /doc/coreutils.texi
parentacb16ca45c2bf785e1e4e880822a23d37c7092c5 (diff)
downloadcoreutils-e828977ada21cd6dc5789777f2c8bc9f64ddb1d5.tar.xz
(ln invocation): Change a few `paths' to `file names'.
Diffstat (limited to 'doc/coreutils.texi')
-rw-r--r--doc/coreutils.texi6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/coreutils.texi b/doc/coreutils.texi
index 89de642c5..7d64b68e4 100644
--- a/doc/coreutils.texi
+++ b/doc/coreutils.texi
@@ -7738,13 +7738,13 @@ ln -s adir/a .
Bad Example:
-# Hard coded paths don't move well.
+# Hard coded file names don't move well.
ln -s $(pwd)/a /some/dir/
Better Example:
-# Relative paths survive directory moves and also work across
-# networked file systems.
+# Relative file names survive directory moves and also
+# work across networked file systems.
ln -s afile anotherfile
ln -s ../adir/afile yetanotherfile
@end smallexample