Skip to content

Commit 8799660

Browse files
authored
docs: Add make script (#7)
1 parent 0c7ad88 commit 8799660

File tree

4 files changed

+23
-3
lines changed

4 files changed

+23
-3
lines changed

docs/.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
Manifest.toml
2+
build/

docs/Project.toml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
[deps]
2+
Documenter = "e30172f5-a6a5-5a46-863b-614d45cd2de4"

docs/make.jl

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
using Distributed
2+
using Documenter: DocMeta, makedocs, deploydocs
3+
4+
DocMeta.setdocmeta!(Distributed, :DocTestSetup, :(using Distributed); recursive=true)
5+
6+
makedocs(;
7+
modules = [Distributed],
8+
sitename = "Distributed",
9+
pages = Any[
10+
"Distributed" => "index.md",
11+
],
12+
checkdocs = :exports,
13+
warnonly = [:cross_references],
14+
)
15+
16+
deploydocs(repo = "github.com/JuliaLang/Distributed.jl.git")

docs/src/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# [Distributed Computing](@id man-distributed)
2-
Tools for distributed parallel processing.
32

43
```@docs
4+
Distributed
55
Distributed.addprocs
66
Distributed.nprocs
77
Distributed.nworkers
@@ -31,18 +31,18 @@ Distributed.AbstractWorkerPool
3131
Distributed.WorkerPool
3232
Distributed.CachingPool
3333
Distributed.default_worker_pool
34-
Distributed.clear!(::CachingPool)
34+
Distributed.clear!
3535
Distributed.remote
3636
Distributed.remotecall(::Any, ::AbstractWorkerPool, ::Any...)
3737
Distributed.remotecall_wait(::Any, ::AbstractWorkerPool, ::Any...)
3838
Distributed.remotecall_fetch(::Any, ::AbstractWorkerPool, ::Any...)
3939
Distributed.remote_do(::Any, ::AbstractWorkerPool, ::Any...)
40+
Distributed.@spawn
4041
Distributed.@spawnat
4142
Distributed.@fetch
4243
Distributed.@fetchfrom
4344
Distributed.@distributed
4445
Distributed.@everywhere
45-
Distributed.clear!(::Any, ::Any; ::Any)
4646
Distributed.remoteref_id
4747
Distributed.channel_from_id
4848
Distributed.worker_id_from_socket

0 commit comments

Comments
 (0)