Skip to content

Commit

Permalink
Merge pull request JuliaLang#13056 from jbn/patch-1
Browse files Browse the repository at this point in the history
s/prescence/presence/
  • Loading branch information
pao committed Sep 10, 2015
2 parents 5506355 + 88ebc5f commit 2232315
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/manual/parallel-computing.rst
Original file line number Diff line number Diff line change
Expand Up @@ -450,7 +450,7 @@ Channels provide for a fast means of inter-task communication. A
``Channel(T::Type, n::Int)`` is a shared queue of maximum length ``n``
holding objects of type ``T``. Multiple readers can read off the channel
via ``fetch`` and ``take!``. Multiple writers can add to the channel via
``put!``. ``isready`` tests for the prescence of any object in
``put!``. ``isready`` tests for the presence of any object in
the channel, while ``wait`` waits for an object to become available.
``close`` closes a Channel. On a closed channel, ``put!`` will fail,
while ``take!`` and ``fetch`` successfully return any existing values
Expand Down

0 comments on commit 2232315

Please sign in to comment.