From 0c36e4ca2f5ace13f15199c4dd32d8fb4e56cb1a Mon Sep 17 00:00:00 2001 From: Matthew Scroggs Date: Wed, 1 Nov 2023 08:42:02 +0000 Subject: [PATCH] fix docs --- tree/src/implementations/mpi_helpers.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tree/src/implementations/mpi_helpers.rs b/tree/src/implementations/mpi_helpers.rs index d092471e..2fd55e15 100644 --- a/tree/src/implementations/mpi_helpers.rs +++ b/tree/src/implementations/mpi_helpers.rs @@ -10,11 +10,11 @@ use mpi::{ /// to a subset of the communicator. /// /// For Example, you may have four processes in a communicator -/// Communicator = [P0, P1, P2, P3]. Each process communicates +/// Communicator = \[P0, P1, P2, P3\]. Each process communicates /// with a subset of the communicator excluding itself, -/// ie. P0 -> [P0, P2], P1 -> [P0], P2-> [], P3 -> [P0, P1, P2]. +/// ie. P0 -> \[P0, P2\], P1 -> \[P0\], P2-> \[\], P3 -> \[P0, P1, P2\]. /// This function expects these packets to be separated in a -/// Vec>, their destination ranks, as well as the number of +/// `Vec>`, their destination ranks, as well as the number of /// packets this process expects to receive overall `recv_count`. pub fn all_to_allv_sparse( comm: &UserCommunicator,