From 3cb2df0c1b9f815c81cb6aa6b08421b0b8eb3a8f 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 1ffe38801..e7ee76183 100644 --- a/src/pointtopoint.jl +++ b/src/pointtopoint.jl @@ -80,7 +80,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.