[llvm] r365159 - [docs] [tools] Fix see also links

Alex Brachet via llvm-commits llvm-commits at lists.llvm.org
Thu Jul 4 14:19:05 PDT 2019


Author: abrachet
Date: Thu Jul  4 14:19:05 2019
New Revision: 365159

URL: http://llvm.org/viewvc/llvm-project?rev=365159&view=rev
Log:
[docs] [tools] Fix see also links

Summary: Changes "see also" links to use :manpage: instead of plain text or the form `name|name` which was being treated literally, not as a link.

Reviewers: jhenderson, rupprecht

Reviewed By: jhenderson

Subscribers: llvm-commits

Tags: #llvm

Differential Revision: https://reviews.llvm.org/D63970

Modified:
    llvm/trunk/docs/CommandGuide/bugpoint.rst
    llvm/trunk/docs/CommandGuide/llc.rst
    llvm/trunk/docs/CommandGuide/lli.rst
    llvm/trunk/docs/CommandGuide/llvm-as.rst
    llvm/trunk/docs/CommandGuide/llvm-bcanalyzer.rst
    llvm/trunk/docs/CommandGuide/llvm-dis.rst
    llvm/trunk/docs/CommandGuide/llvm-extract.rst

Modified: llvm/trunk/docs/CommandGuide/bugpoint.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandGuide/bugpoint.rst?rev=365159&r1=365158&r2=365159&view=diff
==============================================================================
--- llvm/trunk/docs/CommandGuide/bugpoint.rst (original)
+++ llvm/trunk/docs/CommandGuide/bugpoint.rst Thu Jul  4 14:19:05 2019
@@ -194,4 +194,4 @@ if an error occurs, it will exit with a
 SEE ALSO
 --------
 
-opt|opt
+:manpage:`opt(1)`

Modified: llvm/trunk/docs/CommandGuide/llc.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandGuide/llc.rst?rev=365159&r1=365158&r2=365159&view=diff
==============================================================================
--- llvm/trunk/docs/CommandGuide/llc.rst (original)
+++ llvm/trunk/docs/CommandGuide/llc.rst Thu Jul  4 14:19:05 2019
@@ -211,4 +211,4 @@ occurs, it will exit with a non-zero val
 SEE ALSO
 --------
 
-lli
+:manpage:`lli(1)`

Modified: llvm/trunk/docs/CommandGuide/lli.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandGuide/lli.rst?rev=365159&r1=365158&r2=365159&view=diff
==============================================================================
--- llvm/trunk/docs/CommandGuide/lli.rst (original)
+++ llvm/trunk/docs/CommandGuide/lli.rst Thu Jul  4 14:19:05 2019
@@ -214,4 +214,4 @@ Otherwise, it will return the exit code
 SEE ALSO
 --------
 
-:program:`llc`
+:manpage:`llc(1)`

Modified: llvm/trunk/docs/CommandGuide/llvm-as.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandGuide/llvm-as.rst?rev=365159&r1=365158&r2=365159&view=diff
==============================================================================
--- llvm/trunk/docs/CommandGuide/llvm-as.rst (original)
+++ llvm/trunk/docs/CommandGuide/llvm-as.rst Thu Jul  4 14:19:05 2019
@@ -55,4 +55,4 @@ will exit with a non-zero value.
 SEE ALSO
 --------
 
-llvm-dis|llvm-dis, gccas|gccas
+:manpage:`llvm-dis(1)`, as(1)

Modified: llvm/trunk/docs/CommandGuide/llvm-bcanalyzer.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandGuide/llvm-bcanalyzer.rst?rev=365159&r1=365158&r2=365159&view=diff
==============================================================================
--- llvm/trunk/docs/CommandGuide/llvm-bcanalyzer.rst (original)
+++ llvm/trunk/docs/CommandGuide/llvm-bcanalyzer.rst Thu Jul  4 14:19:05 2019
@@ -303,4 +303,4 @@ The detailed output provides additional
 SEE ALSO
 --------
 
-:doc:`/CommandGuide/llvm-dis`, :doc:`/BitCodeFormat`
+:manpage:`llvm-dis(1)`, :doc:`/BitCodeFormat`

Modified: llvm/trunk/docs/CommandGuide/llvm-dis.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandGuide/llvm-dis.rst?rev=365159&r1=365158&r2=365159&view=diff
==============================================================================
--- llvm/trunk/docs/CommandGuide/llvm-dis.rst (original)
+++ llvm/trunk/docs/CommandGuide/llvm-dis.rst Thu Jul  4 14:19:05 2019
@@ -51,4 +51,4 @@ occurs, it will exit with a non-zero val
 SEE ALSO
 --------
 
-llvm-as|llvm-as
+:manpage:`llvm-as(1)`

Modified: llvm/trunk/docs/CommandGuide/llvm-extract.rst
URL: http://llvm.org/viewvc/llvm-project/llvm/trunk/docs/CommandGuide/llvm-extract.rst?rev=365159&r1=365158&r2=365159&view=diff
==============================================================================
--- llvm/trunk/docs/CommandGuide/llvm-extract.rst (original)
+++ llvm/trunk/docs/CommandGuide/llvm-extract.rst Thu Jul  4 14:19:05 2019
@@ -77,4 +77,4 @@ occurs, it will exit with a non-zero val
 SEE ALSO
 --------
 
-bugpoint
+:manpage:`bugpoint(1)`




More information about the llvm-commits mailing list