Skip to content

Commit d3a1124

Browse files
committed
Grammar fixes, whitespace cleanup, flow fixes
1 parent 76217ea commit d3a1124

File tree

1 file changed

+11
-12
lines changed

1 file changed

+11
-12
lines changed

docs/dev/env.rst

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ already an Emacs user is `Python Programming in Emacs`_ at EmacsWiki.
9797
1. Emacs itself comes with a python mode.
9898
2. Python ships with an alternate version:
9999
`python-mode.el <https://launchpad.net/python-mode>`_
100-
3. Fabián Ezequiel Gallina's provides nice functionality and
101-
behavior out of the box: `python.el <https://github.com/fgallina/python.el>`_
100+
3. Fabián Ezequiel Gallina's `python.el <https://github.com/fgallina/python.el>`_
101+
provides nice functionality and behavior out of the box
102102

103103
.. _Python Programming in Emacs: http://emacswiki.org/emacs/PythonProgrammingInEmacs
104104

@@ -141,16 +141,15 @@ The most popular Eclipse plugin for Python development is Aptana's
141141
Komodo IDE
142142
----------
143143
`Komodo IDE <http://www.activestate.com/komodo-ide>`_ is developed by
144-
ActiveState and is a commercial IDE for Windows, Mac
145-
and Linux.
144+
ActiveState and is a commercial IDE for Windows, Mac and Linux.
146145

147146

148147
Spyder
149148
------
150149

151-
`Spyder <http://code.google.com/p/spyderlib/>`_ an IDE specifically geared
150+
`Spyder <http://code.google.com/p/spyderlib/>`_ is an IDE specifically geared
152151
toward working with scientific python libraries (namely `Scipy <http://www.scipy.org/>`_).
153-
Includes integration with pyflakes_, `pylint <http://www.logilab.org/857>`_,
152+
It includes integration with pyflakes_, `pylint <http://www.logilab.org/857>`_,
154153
and `rope <http://rope.sourceforge.net/>`_.
155154

156155
Spyder is open-source (free), offers code completion, syntax highlighting,
@@ -160,15 +159,15 @@ class and function browser, and object inspection.
160159
WingIDE
161160
-------
162161

163-
`WingIDE <http://wingware.com/>`_ a python specific IDE. Runs for Linux,
162+
`WingIDE <http://wingware.com/>`_ is a python specific IDE. It runs on Linux,
164163
Windows, and Mac (as an X11 application, which frustrates some Mac users).
165164

166165

167166
NINJA-IDE
168167
---------
169168

170169
`NINJA-IDE <http://www.ninja-ide.org/>`_ (from the recursive acronym: "Ninja-IDE
171-
Is Not Just Another IDE", is a cross-platform IDE, specially designed to build
170+
Is Not Just Another IDE") is a cross-platform IDE, specially designed to build
172171
Python applications, and runs on Linux/X11, Mac OS X and Windows desktop operating
173172
systems. Installers for these platforms can be downloaded from the website.
174173

@@ -207,7 +206,7 @@ library which you can use to install other packages. The name of the
207206
virtual environment (in this case, it was ``venv``) can be anything;
208207
omitting the name will place the files in the current directory instead.
209208

210-
In order the start using the virtual environment, run::
209+
To start using the virtual environment, run::
211210

212211
$ source venv/bin/activate
213212

@@ -284,12 +283,12 @@ IDLE
284283

285284
`IDLE <http://docs.python.org/library/idle.html>`_ is an integrated
286285
development environment that is part of Python standard library. It is
287-
completely written in Python and uses Tkinter GUI toolkit. Though IDLE
288-
is not suited for full-blown development using Python , it is quite
286+
completely written in Python and uses the Tkinter GUI toolkit. Though IDLE
287+
is not suited for full-blown development using Python, it is quite
289288
helpful to try out small Python snippets and experiment with different
290289
features in Python.
291290

292-
It provides following features:
291+
It provides the following features:
293292

294293
* Python Shell Window (interpreter)
295294
* Multi window text editor that colorizes Python code

0 commit comments

Comments
 (0)