summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBernhard Voelker <mail@bernhard-voelker.de>2021-01-02 14:57:03 +0100
committerPádraig Brady <P@draigBrady.com>2021-01-03 13:57:36 +0000
commitebf2c4dcc687c9f057a8a22674fd984aa929012e (patch)
tree9b1ff491cc0936413afd2456919b56d1d8c3db69
parentf01d9e23db41584fc2576ff714c94d64736e203c (diff)
doc: make formatting of SEE ALSO in cat.1 and tac.1 consistent
None of the coreutils man pages - but the two above - are using bold setting for the references to other man pages in the SEE ALSO section. * man/cat.x (SEE ALSO): Remove '\fB...\fP' setting. * man/tac.x: Likewise, and add a reference to cat(1).
-rw-r--r--man/cat.x2
-rw-r--r--man/tac.x2
2 files changed, 2 insertions, 2 deletions
diff --git a/man/cat.x b/man/cat.x
index b84600fbd..9eb38cf05 100644
--- a/man/cat.x
+++ b/man/cat.x
@@ -3,4 +3,4 @@ cat \- concatenate files and print on the standard output
[DESCRIPTION]
.\" Add any additional description here
[SEE ALSO]
-\fBtac\fP(1)
+tac(1)
diff --git a/man/tac.x b/man/tac.x
index 66bd338ec..677da2f82 100644
--- a/man/tac.x
+++ b/man/tac.x
@@ -3,4 +3,4 @@ tac \- concatenate and print files in reverse
[DESCRIPTION]
.\" Add any additional description here
[SEE ALSO]
-\fBrev\fP(1)
+cat(1), rev(1)