diff options
author | Jim Meyering <jim@meyering.net> | 2005-06-19 13:39:51 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-06-19 13:39:51 +0000 |
commit | e828977ada21cd6dc5789777f2c8bc9f64ddb1d5 (patch) | |
tree | 90d2af3c9c72d19dc178f31a4f0fab8bf3367797 /doc | |
parent | acb16ca45c2bf785e1e4e880822a23d37c7092c5 (diff) | |
download | coreutils-e828977ada21cd6dc5789777f2c8bc9f64ddb1d5.tar.xz |
(ln invocation): Change a few `paths' to `file names'.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/coreutils.texi | 6 |
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 |