Skip to content

Commit 5fb0b9d

Browse files
authored
Irecv! Docstring Fix (#895)
1 parent 5ef7fef commit 5fb0b9d

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

src/pointtopoint.jl

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -185,10 +185,10 @@ end
185185
req = Irecv!(recvbuf, comm::Comm[, req::AbstractRequest = Request()];
186186
source::Integer=MPI.ANY_SOURCE, tag::Integer=MPI.ANY_TAG)
187187
188-
Starts a nonblocking receive into the buffer `data` from MPI rank `source` of communicator
189-
`comm` using with the message tag `tag`.
188+
Starts a nonblocking receive into the buffer `recvbuf` from MPI rank `source` of communicator
189+
`comm` using the message tag `tag`.
190190
191-
`data` can be a [`Buffer`](@ref), or any object for which `Buffer(data)` is defined.
191+
`recvbuf` can be a [`Buffer`](@ref), or any object for which `Buffer(recvbuf)` is defined.
192192
193193
Returns the [`AbstractRequest`](@ref) object for the nonblocking receive.
194194
@@ -343,13 +343,13 @@ isnull(msg::Message) = msg.val == API.MPI_MESSAGE_NULL[]
343343
source::Integer=MPI.ANY_SOURCE, tag::Integer=MPI.ANY_TAG)
344344
345345
Matching non-blocking probe. Similar to [`MPI.Iprobe`](@ref), except that it
346-
also returns `msg`, an [`MPI.Message`](@ref) object.
346+
also returns `msg`, an [`MPI.Message`](@ref) object.
347347
348348
Checks if there is a message that can be received matching `source`, `tag` and
349349
`comm`. If so, returns `ismsg = true`, and a [`Message`](@ref) object `msg`,
350350
which must be received by either [`MPI.Mrecv!`](@ref) or [`MPI.Imrecv!`](@ref).
351351
Otherwise `msg` is set to be a null `Message`.
352-
352+
353353
The `Status` argument additionally returns the [`Status`](@ref) of the completed
354354
request.
355355
@@ -377,12 +377,12 @@ end
377377
source::Integer=MPI.ANY_SOURCE, tag::Integer=MPI.ANY_TAG)
378378
379379
Matching blocking probe. Similar to [`MPI.Probe`](@ref), except that it also
380-
returns `msg`, an [`MPI.Message`](@ref) object.
380+
returns `msg`, an [`MPI.Message`](@ref) object.
381381
382382
Blocks until a message that can be received matching `source`, `tag` and `comm`,
383383
returning a [`Message`](@ref) object `msg`, which must be received by either
384384
[`MPI.Mrecv!`](@ref) or [`MPI.Imrecv!`](@ref).
385-
385+
386386
The `Status` argument additionally returns the [`Status`](@ref) of the completed
387387
request.
388388

0 commit comments

Comments
 (0)