]> git.ipfire.org Git - thirdparty/coreutils.git/commitdiff
(ln invocation): Change a few `paths' to `file names'.
authorJim Meyering <jim@meyering.net>
Sun, 19 Jun 2005 13:39:51 +0000 (13:39 +0000)
committerJim Meyering <jim@meyering.net>
Sun, 19 Jun 2005 13:39:51 +0000 (13:39 +0000)
doc/coreutils.texi

index 89de642c553104a279707bffe1fff3919609f855..7d64b68e44f6709f698cfbe5a7ea62e051040e52 100644 (file)
@@ -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