@@ -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
193193Returns 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
345345Matching 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
348348Checks 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`,
350350which must be received by either [`MPI.Mrecv!`](@ref) or [`MPI.Imrecv!`](@ref).
351351Otherwise `msg` is set to be a null `Message`.
352-
352+
353353The `Status` argument additionally returns the [`Status`](@ref) of the completed
354354request.
355355
@@ -377,12 +377,12 @@ end
377377 source::Integer=MPI.ANY_SOURCE, tag::Integer=MPI.ANY_TAG)
378378
379379Matching 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
382382Blocks until a message that can be received matching `source`, `tag` and `comm`,
383383returning a [`Message`](@ref) object `msg`, which must be received by either
384384[`MPI.Mrecv!`](@ref) or [`MPI.Imrecv!`](@ref).
385-
385+
386386The `Status` argument additionally returns the [`Status`](@ref) of the completed
387387request.
388388
0 commit comments