[Python-checkins] r62735 - peps/trunk/pep-0370.txt

guido.van.rossum python-checkins at python.org
Mon May 5 22:48:00 CEST 2008


Author: guido.van.rossum
Date: Mon May  5 22:48:00 2008
New Revision: 62735

Log:
Fix a few typos.


Modified:
   peps/trunk/pep-0370.txt

Modified: peps/trunk/pep-0370.txt
==============================================================================
--- peps/trunk/pep-0370.txt	(original)
+++ peps/trunk/pep-0370.txt	Mon May  5 22:48:00 2008
@@ -21,11 +21,11 @@
 Rationale
 =========
 
-Current Python versions don't have an unified way to install packages
-into the home directory of an user (except for Mac Framework
+Current Python versions don't have a unified way to install packages
+into the home directory of a user (except for Mac Framework
 builds). Users are either forced to ask the system administrator to
 install or update a package for them or to use one of the many
-workaround like Virtual Python [1]_, Working Env [2]_ or 
+workarounds like Virtual Python [1]_, Working Env [2]_ or 
 Virtual Env [3]_.
 
 It's not the goal of the PEP to replace the tools or to implement
@@ -49,11 +49,11 @@
 
 user site directory
 
-   A site directory inside the users' home directory. An user site
+   A site directory inside the users' home directory. A user site
    directory is specific to a Python version. The path contains
    the version number (major and minor only).
 
-   Unix (including Mac)
+   Unix (including Mac OS X)
       ``~/.local/lib/python2.6/site-packages``
    Windows
       ``%APPDATA%/Python/Python26/site-packages``
@@ -97,7 +97,7 @@
 On Windows the *Application Data* directory (aka ``APPDATA``) was chosen 
 because it is the most designated place for application data. Microsoft
 recommands that software doesn't write to ``USERPROFILE`` [5]_ and
-``My Documents`` is not suited for application data, too. [8]_ The code
+``My Documents`` is not suited for application data, either. [8]_ The code
 doesn't query the Win32 API, instead it uses the environment variable
 %APPDATA%.
 
@@ -121,7 +121,7 @@
 --------------
 
 On Mac OS X Python uses ~/.local directory as well. [12]_ Framework builds
-if Python include ``~/Library/Python/2.6/site-packages`` as an additional
+of Python include ``~/Library/Python/2.6/site-packages`` as an additional
 search path. 
 
 


More information about the Python-checkins mailing list