Skip to content

Commit b627c8f

Browse files
fix: apply suggestions from code review
Co-authored-by: Daniel Arndt <[email protected]>
1 parent ccbec83 commit b627c8f

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

docs/api/core.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ Core
1414
* - ``MPI_Rsend``
1515
- ``send<CommMode::Ready>``
1616
- ✓
17-
* - MPI_Recv
17+
* - ``MPI_Recv``
1818
- recv
1919
* - ``MPI_Ssend``
2020
- ``send<CommMode::Synchronous>``
@@ -116,7 +116,7 @@ Related Types
116116

117117
.. cpp:enumerator:: KokkosComm::CommMode::Synchronous
118118

119-
Synchronous mode: Send operations complete successfully only if a matching receive is started, and the receive operation has started to receive themessage sent.
119+
Synchronous mode: Send operations complete successfully only if a matching receive is started, and the receive operation has started to receive the message sent.
120120

121121
.. cpp:enumerator:: KokkosComm::CommMode::Default
122122

src/KokkosComm_comm_mode.hpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ namespace KokkosComm {
2323
enum class CommMode {
2424
// Default mode: lets the user override the send operations behavior at
2525
// compile-time. E.g., this can be set to mode "Synchronous" for debug
26-
// builds.
26+
// builds by defining KOKKOSCOMM_FORCE_SYNCHRONOUS_MODE.
2727
Default,
2828
// Standard mode: MPI implementation decides whether outgoing messages will
2929
// be buffered. Send operations can be started whether or not a matching

0 commit comments

Comments
 (0)