Skip to content

Commit c297457

Browse files
ViralBShahspaette
andauthored
Apply the patch provided in JuliaLang/julia#46640 for typos (JuliaLang/julia#46641)
Apply the patch provided in JuliaLang/julia#46640 by @spaette for typos Co-authored-by: spaette <[email protected]>
1 parent e998593 commit c297457

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

src/cluster.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Some are used by the cluster manager to add workers to an already-initialized ho
2222
* `count` -- the number of workers to be launched on the host
2323
* `exename` -- the path to the Julia executable on the host, defaults to `"\$(Sys.BINDIR)/julia"` or
2424
`"\$(Sys.BINDIR)/julia-debug"`
25-
* `exeflags` -- flags to use when lauching Julia remotely
25+
* `exeflags` -- flags to use when launching Julia remotely
2626
2727
The `userdata` field is used to store information for each worker by external managers.
2828

src/remotecall.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -321,7 +321,7 @@ function process_worker(rr)
321321
w = worker_from_id(rr.where)::Worker
322322
msg = (remoteref_id(rr), myid())
323323

324-
# Needs to aquire a lock on the del_msg queue
324+
# Needs to acquire a lock on the del_msg queue
325325
T = Threads.@spawn begin
326326
publish_del_msg!($w, $msg)
327327
end

src/workerpool.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ wp_local_length(pool::AbstractWorkerPool) = length(pool.workers)
7373
wp_local_isready(pool::AbstractWorkerPool) = isready(pool.channel)
7474

7575
function wp_local_put!(pool::AbstractWorkerPool, w::Int)
76-
# In case of default_worker_pool, the master is implictly considered a worker, i.e.,
76+
# In case of default_worker_pool, the master is implicitly considered a worker, i.e.,
7777
# it is not present in pool.workers.
7878
# Confirm the that the worker is part of a pool before making it available.
7979
w in pool.workers && put!(pool.channel, w)

test/distributed_exec.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -993,7 +993,7 @@ end
993993
let
994994
@test_throws RemoteException remotecall_fetch(()->LocalFoo.foo, 2)
995995

996-
bad_thunk = ()->NonexistantModule.f()
996+
bad_thunk = ()->NonexistentModule.f()
997997
@test_throws RemoteException remotecall_fetch(bad_thunk, 2)
998998

999999
# Test that the stream is still usable

0 commit comments

Comments
 (0)