Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/onqtam/doctest.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/doc
diff options
context:
space:
mode:
authorPhilipp Bucher <philipp.bucher@tum.de>2021-11-04 16:11:33 +0300
committeronqtam <vik.kirilov@gmail.com>2021-12-11 00:41:28 +0300
commit41e0f4a0c3d117bf2df1cb6f3a986bb5cafd08dc (patch)
treebbb013b669e94a9d610262ff24ec9e367a36ad76 /doc
parentbc49167e0404be1a7a95e7e5f270603111e23452 (diff)
minor fixes in MPI docs (#499)
Diffstat (limited to 'doc')
-rw-r--r--doc/markdown/extensions.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/markdown/extensions.md b/doc/markdown/extensions.md
index c90469f3..95686d96 100644
--- a/doc/markdown/extensions.md
+++ b/doc/markdown/extensions.md
@@ -23,7 +23,7 @@ See [**the complete test**](../../examples/mpi/mpi.cpp) and [**the configuration
int my_function_to_test(MPI_Comm comm) {
int rank;
- MPI_comm_rank(comm,&rank);
+ MPI_Comm_rank(comm,&rank);
if (rank == 0) {
return 10;
}
@@ -68,7 +68,7 @@ mpirun -np 2 unit_test_executable.exe
```c++
#define DOCTEST_CONFIG_IMPLEMENT
-#include "doctest/mpi/doctest.h"
+#include "doctest/extensions/doctest_mpi.h"
int main(int argc, char** argv) {
MPI_Init(&argc, &argv);