Skip to content

Commit

Permalink
Fix typos in queue docs
Browse files Browse the repository at this point in the history
  • Loading branch information
WardLT committed Nov 17, 2022
1 parent ebcce94 commit 9c5edf2
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions docs/queues.rst
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,8 @@ Colmena supports multiple backends for queues that pass data between Thinker and
Python Pipes
------------

**Class**:

:class:`~colmena.queues.python.PipeQueues` uses `Python Pipes <https://docs.python.org/3/library/multiprocessing.html#pipes-and-queues>`_ transmit data
between two Python processes without the need for any intermediate server.
:class:`~colmena.queue.python.PipeQueues` uses `Python Pipes <https://docs.python.org/3/library/multiprocessing.html#pipes-and-queues>`_ transmit data
between two Python processes.

**Advantages**: Simple setup (no configuration or other services required)

Expand All @@ -23,7 +21,7 @@ between two Python processes without the need for any intermediate server.
Redis
-----

:class:`~colmena.queues.redis.RedisQueue` uses `Redis <https://redis.io/>`_, a high-performance in-memory data store.
:class:`~colmena.queue.redis.RedisQueues` uses `Redis <https://redis.io/>`_, a high-performance in-memory data store.

**Advantages**:

Expand Down

0 comments on commit 9c5edf2

Please sign in to comment.