From 02c2bbd5ee31ad827fc98a5040da3177d567b918 Mon Sep 17 00:00:00 2001 From: Simon Byrne Date: Tue, 19 Nov 2019 13:17:50 -0800 Subject: [PATCH] fix docstring signature --- src/pointtopoint.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/pointtopoint.jl b/src/pointtopoint.jl index d83957014..7b540cef8 100644 --- a/src/pointtopoint.jl +++ b/src/pointtopoint.jl @@ -82,7 +82,7 @@ const REQUEST_NULL = _Request(MPI_REQUEST_NULL, nothing) Request() = Request(REQUEST_NULL.val, nothing) """ - ismessage, (status|nothing) = Iprobe(src::Integer, tag::Integer, comm::Comm) + status = Probe(src::Integer, tag::Integer, comm::Comm) Blocks until there is a message that can be received matching `src`, `tag` and `comm`. Returns the corresponding [`Status`](@ref) object.