Skip to content

Commit

Permalink
fix docstring for workers() and procs() (#38467)
Browse files Browse the repository at this point in the history
  • Loading branch information
rfourquet committed Nov 21, 2020
1 parent aa18d37 commit b166d0d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions stdlib/Distributed/src/cluster.jl
Original file line number Diff line number Diff line change
Expand Up @@ -869,13 +869,13 @@ Get the number of available worker processes. This is one less than [`nprocs()`]
# Examples
```julia-repl
\$ julia -p 5
\$ julia -p 2
julia> nprocs()
6
3
julia> nworkers()
5
2
```
"""
function nworkers()
Expand All @@ -890,7 +890,7 @@ Return a list of all process identifiers, including pid 1 (which is not included
# Examples
```julia-repl
\$ julia -p 5
\$ julia -p 2
julia> procs()
3-element Array{Int64,1}:
Expand Down Expand Up @@ -952,7 +952,7 @@ Return a list of all worker process identifiers.
# Examples
```julia-repl
\$ julia -p 5
\$ julia -p 2
julia> workers()
2-element Array{Int64,1}:
Expand Down

4 comments on commit b166d0d

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily benchmark build, I will reply here when finished:

@nanosoldier runbenchmarks(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Executing the daily package evaluation, I will reply here when finished:

@nanosoldier runtests(ALL, isdaily = true)

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your package evaluation job has completed - possible new issues were detected. A full report can be found here. cc @maleadt

@nanosoldier
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Your benchmark job has completed - successfully executed benchmarks. A full report can be found here. cc @christopher-dG

Please sign in to comment.