Skip to content

Commit 0b04e2b

Browse files
committed
Trivial docs updates
Minor updates to match the top-level index.rst verbiage on the v4.0.x and v4.1.x branches. Signed-off-by: Jeff Squyres <[email protected]>
1 parent 8c1495d commit 0b04e2b

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

docs/conf.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,8 @@
3131
ompi_data = dict()
3232
for ompi_line in ompi_lines:
3333
if '#' in ompi_line:
34-
ompi_line, _ = ompi_line.split("#")
34+
parts = ompi_line.split("#")
35+
ompi_line = parts[0]
3536
ompi_line = ompi_line.strip()
3637

3738
if '=' not in ompi_line:

docs/index.rst

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@ order to build the best MPI library available. Open MPI offers
1414
advantages for system and software vendors, application developers and
1515
computer science researchers.
1616

17-
Other documentation
18-
===================
17+
Documentation locations
18+
=======================
1919

20-
Documentation for other versions of Open can be found in the following
21-
locations:
20+
Documentation for Open can be found in the following locations:
2221

2322
.. list-table::
2423
:header-rows: 1
@@ -28,7 +27,8 @@ locations:
2827

2928
* - v5.0.0 and later
3029
- Open MPI documentation has consolidated and moved to
31-
ReadTheDocs.io.
30+
31+
https://docs.open-mpi.org/.
3232

3333
This particular documentation is for |ompi_ver|; use the
3434
selector in the

0 commit comments

Comments
 (0)