Skip to content

Commit 83630ed

Browse files
committed
typos
1 parent 12fe8d7 commit 83630ed

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

docs/starting/install/win.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ project. This is particularly important for Web development, where each
8080
framework and application will have many dependencies.
8181

8282

83-
To set up a new Python environment, change the working directory to where ever
83+
To set up a new Python environment, change the working directory to wherever
8484
you want to store the environment, and run the virtualenv utility in your
8585
project's directory
8686

docs/starting/which-python.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ level of compatibility with Python packages and C extension modules.
4747

4848
If you are writing open-source Python code and want to reach the widest possible
4949
audience, targeting CPython is your best bet. If you need to use any packages
50-
that rely on C extensions for their functionality (e.g. numpy) then CPython
50+
that rely on C extensions for their functionality (e.g., numpy) then CPython
5151
is your only choice.
5252

5353
Being the reference implementation, all versions of the Python language are
@@ -74,7 +74,7 @@ Jython
7474
------
7575

7676
`Jython <http://www.jython.org/>`_ is a Python implementation that compiles
77-
Python code to Java byte code that is then executed in a JVM. It has the additional
77+
Python code to Java bytecode that is then executed in a JVM. It has the additional
7878
advantage of being able to import and use any Java class like a Python
7979
module.
8080

docs/writing/structure.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ isolated? By answering questions like these you can begin to plan, in
1414
a broad sense, what your finished product will look like.
1515

1616
In this section we take a closer look at Python's module and import
17-
systems as they are the central element to enforcing structure in your
17+
systems as they are the central elements to enforcing structure in your
1818
project. We then discuss various perspectives on how to build code which
1919
can be extended and tested reliably.
2020

0 commit comments

Comments
 (0)