Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Typos #2

Merged
merged 1 commit into from Feb 8, 2012
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
12 changes: 6 additions & 6 deletions README.rst
Expand Up @@ -5,7 +5,7 @@ pistil
Simple multiprocessing toolkit. This is based on the `Gunicorn <http://gunicorn.org>`_ multiprocessing engine.

This library allows you to supervise multiple type of workers and chain
supervisors. Gracefull, reload, signaling between workers is handled.
supervisors. Graceful, reload, signaling between workers is handled.


Simple Arbiter launching one worker::
Expand Down Expand Up @@ -41,11 +41,11 @@ same worker on 3 os processes::
a = PoolArbiter(conf, spec)
a.run()

A common use for that pattern is a tcp server tjhat share the same
A common use for that pattern is a tcp server that share the same
socket between them. For that purpose pistil provides the TcpArbiter and
TcpSyncWorker and the GeventTcpWorker to use with gevent.

Pistil allows you to mix diffrent kind of workers in an arbiter::
Pistil allows you to mix different kind of workers in an arbiter::

from pistil.arbiter import Arbiter
from pistil.worker import Worker
Expand Down Expand Up @@ -125,7 +125,7 @@ You can also chain arbiters::
arbiter.run()


This examplelaunch a web server with 3 workers on port 5000 and another
This example launches a web server with 3 workers on port 5000 and another
worker fetching the welcome page hosted by this server::


Expand All @@ -143,5 +143,5 @@ worker fetching the welcome page hosted by this server::
welcome world


More documentation is comming. See also examples in the examples/
folder.
More documentation is coming. See also examples in the examples/
folder.