summaryrefslogtreecommitdiff
path: root/Doc/using
diff options
context:
space:
mode:
authorMiss Islington (bot) <31488909+miss-islington@users.noreply.github.com>2018-07-30 11:09:22 -0700
committerGitHub <noreply@github.com>2018-07-30 11:09:22 -0700
commita0605182042c64762a4b8c9f3eccc3f0e300ae8c (patch)
treedf02ceabad2e6b0b500ed4b5fc8e27ec74264eb9 /Doc/using
parent6c89a9a4c7d1804e16038f9ee3a0b2efaa4bdee6 (diff)
downloadcpython-git-a0605182042c64762a4b8c9f3eccc3f0e300ae8c.tar.gz
Fix typos & formatting in Using Python on Windows doc (GH-8559)
(cherry picked from commit 8e7e8bd8984068e3245d64b9a21e6840880747af) Co-authored-by: Segev Finer <segev208@gmail.com>
Diffstat (limited to 'Doc/using')
-rw-r--r--Doc/using/windows.rst8
1 files changed, 4 insertions, 4 deletions
diff --git a/Doc/using/windows.rst b/Doc/using/windows.rst
index 5cbf13f510..eb278a5e5e 100644
--- a/Doc/using/windows.rst
+++ b/Doc/using/windows.rst
@@ -147,7 +147,7 @@ of available options is shown below.
| | ``.pyc``. | |
+---------------------------+--------------------------------------+--------------------------+
| PrependPath | Add install and Scripts directories | 0 |
-| | tho :envvar:`PATH` and ``.PY`` to | |
+| | to :envvar:`PATH` and ``.PY`` to | |
| | :envvar:`PATHEXT` | |
+---------------------------+--------------------------------------+--------------------------+
| Shortcuts | Create shortcuts for the interpreter,| 1 |
@@ -210,7 +210,7 @@ The options listed above can also be provided in a file named ``unattend.xml``
alongside the executable. This file specifies a list of options and values.
When a value is provided as an attribute, it will be converted to a number if
possible. Values provided as element text are always left as strings. This
-example file sets the same options and the previous example:
+example file sets the same options as the previous example:
.. code-block:: xml
@@ -610,7 +610,7 @@ Customization via INI files
Two .ini files will be searched by the launcher - ``py.ini`` in the current
user's "application data" directory (i.e. the directory returned by calling the
-Windows function SHGetFolderPath with CSIDL_LOCAL_APPDATA) and ``py.ini`` in the
+Windows function ``SHGetFolderPath`` with ``CSIDL_LOCAL_APPDATA``) and ``py.ini`` in the
same directory as the launcher. The same .ini files are used for both the
'console' version of the launcher (i.e. py.exe) and for the 'windows' version
(i.e. pyw.exe)
@@ -816,7 +816,7 @@ following advice will prevent conflicts with other installations:
These will ensure that the files in a system-wide installation will not take
precedence over the copy of the standard library bundled with your application.
Otherwise, your users may experience problems using your application. Note that
-the first suggestion is the best, as the other may still be susceptible to
+the first suggestion is the best, as the others may still be susceptible to
non-standard paths in the registry and user site-packages.
.. versionchanged::