Skip to content

Commit c0d897d

Browse files
committed
Little grammar fix, trailing whitespace deleted
1 parent 5337437 commit c0d897d

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

docs/scenarios/imaging.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,15 @@ The `Python Imaging Library <http://www.pythonware.com/products/pil/>`_, or PIL
1212
for short, is *the* library for image manipulation in Python.
1313

1414
It works with Python 1.5.2 and above, including 2.5, 2.6 and 2.7. Unfortunately,
15-
it doesn't work with 3.0+ yet.
15+
it doesn't work with 3.0+ yet.
1616

1717
Installation
1818
~~~~~~~~~~~~
1919

2020
PIL has a reputation of not being very straightforward to install. Listed below
2121
are installation notes on various systems.
2222

23-
Also, there's a fork named `Pillow <http://pypi.python.org/pypi/Pillow>`_ which is easier
23+
Also, there's a fork named `Pillow <http://pypi.python.org/pypi/Pillow>`_ which is easier
2424
to install. It has good setup instructions for all platforms.
2525

2626
Installing on Linux

docs/scenarios/network.rst

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -6,19 +6,19 @@ Twisted
66

77
`Twisted <http://twistedmatrix.com/trac/>`_ is an event-driven networking engine. It can be
88
used to build applications around many different networking protocols, including http servers
9-
and clients, applications using SMTP, POP3, IMAP or SSH protocols, instant messaging and
10-
`many more <http://twistedmatrix.com/trac/wiki/Documentation>`_.
9+
and clients, applications using SMTP, POP3, IMAP or SSH protocols, instant messaging and
10+
many more <http://twistedmatrix.com/trac/wiki/Documentation>`_.
1111

1212
PyZMQ
1313
-----
1414

1515
`PyZMQ <http://zeromq.github.com/pyzmq/>`_ is the Python binding for `ZeroMQ <http://www.zeromq.org/>`_,
1616
which is a high-performance asynchronous messaging library. One great advantage is that ZeroMQ
17-
can be used for message queuing without message broker. The basic patterns for this are:
17+
can be used for message queuing without a message broker. The basic patterns for this are:
1818

1919
- request-reply: connects a set of clients to a set of services. This is a remote procedure call
2020
and task distribution pattern.
21-
- publish-subscribe: connects a set of publishers to a set of subscribers. This is a data
21+
- publish-subscribe: connects a set of publishers to a set of subscribers. This is a data
2222
distribution pattern.
2323
- push-pull (or pipeline): connects nodes in a fan-out / fan-in pattern that can have multiple
2424
steps, and loops. This is a parallel task distribution and collection pattern.

0 commit comments

Comments
 (0)