Skip to content

Commit 8990e45

Browse files
authored
Fix typos (#850)
1 parent 30010de commit 8990e45

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

src/collective.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -782,7 +782,7 @@ Allreduce(obj::T, op, comm::Comm) where {T} =
782782
Scan!(sendbuf, recvbuf, op, comm::Comm)
783783
Scan!(sendrecvbuf, op, comm::Comm)
784784
785-
Inclusive prefix reduction (analagous to `accumulate` in Julia): `recvbuf` on rank `i`
785+
Inclusive prefix reduction (analogous to `accumulate` in Julia): `recvbuf` on rank `i`
786786
will contain the result of reducing `sendbuf` by `op` from ranks `0:i`.
787787
788788
If only a single buffer `sendrecvbuf` is provided, then operations will be performed
@@ -813,7 +813,7 @@ Scan!(buf, op, comm::Comm) =
813813
"""
814814
recvbuf = Scan(sendbuf, op, comm::Comm)
815815
816-
Inclusive prefix reduction (analagous to `accumulate` in Julia): `recvbuf` on rank `i`
816+
Inclusive prefix reduction (analogous to `accumulate` in Julia): `recvbuf` on rank `i`
817817
will contain the result of reducing `sendbuf` by `op` from ranks `0:i`.
818818
819819
`sendbuf` can also be a scalar, in which case `recvbuf` will also be a scalar of the same
@@ -837,7 +837,7 @@ Scan(object::T, op, comm::Comm) where {T} = Scan!(Ref(object), Ref{T}(), op, com
837837
Exscan!(sendbuf, recvbuf, op, comm::Comm)
838838
Exscan!(sendrecvbuf, op, comm::Comm)
839839
840-
Exclusive prefix reduction (analagous to `accumulate` in Julia): `recvbuf` on rank `i`
840+
Exclusive prefix reduction (analogous to `accumulate` in Julia): `recvbuf` on rank `i`
841841
will contain the result of reducing `sendbuf` by `op` from ranks `0:i-1`. The
842842
`recvbuf` on rank `0` is ignored, and the `recvbuf` on rank `1` will contain the contents
843843
of `sendbuf` on rank `0`.
@@ -869,7 +869,7 @@ Exscan!(buf, op, comm::Comm) = Exscan!(IN_PLACE, buf, op, comm)
869869
"""
870870
recvbuf = Exscan(sendbuf, op, comm::Comm)
871871
872-
Exclusive prefix reduction (analagous to `accumulate` in Julia): `recvbuf` on rank `i`
872+
Exclusive prefix reduction (analogous to `accumulate` in Julia): `recvbuf` on rank `i`
873873
will contain the result of reducing `sendbuf` by `op` from ranks `0:i-1`. The
874874
`recvbuf` on rank `0` is undefined, and the `recvbuf` on rank `1` will contain the contents
875875
of `sendbuf` on rank `0`.

src/environment.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -287,7 +287,7 @@ It is unaffected by [`MPI.Finalize`](@ref), and is one of the few functions that
287287
called before [`MPI.Init`](@ref).
288288
289289
# External links
290-
$(_doc_external("MPI_Intialized"))
290+
$(_doc_external("MPI_Initialized"))
291291
"""
292292
function Initialized()
293293
flag = Ref{Cint}()

src/pointtopoint.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ Matching non-blocking probe. Similar to [`MPI.Iprobe`](@ref), except that it
346346
also returns `msg`, an [`MPI.Message`](@ref) object.
347347
348348
Checks if there is a message that can be received matching `source`, `tag` and
349-
`comm`. If so, returns `ismsg = true`, and a [`Message`](@ref) objec `msg`,
349+
`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`.
352352
@@ -380,7 +380,7 @@ Matching blocking probe. Similar to [`MPI.Probe`](@ref), except that it also
380380
returns `msg`, an [`MPI.Message`](@ref) object.
381381
382382
Blocks until a message that can be received matching `source`, `tag` and `comm`,
383-
returning a [`Message`](@ref) objec `msg`, which must be received by either
383+
returning a [`Message`](@ref) object `msg`, which must be received by either
384384
[`MPI.Mrecv!`](@ref) or [`MPI.Imrecv!`](@ref).
385385
386386
The `Status` argument additionally returns the [`Status`](@ref) of the completed

0 commit comments

Comments
 (0)