From 785e8825ab86016c3f18b32d23729021130d18ff Mon Sep 17 00:00:00 2001 From: Wieland Hoffmann Date: Thu, 27 Apr 2017 22:38:00 +0200 Subject: [PATCH 1/2] Typo fix: using -> used --- Doc/using/windows.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Doc/using/windows.rst b/Doc/using/windows.rst index 3e4b70e8a17ef7..c55821402502bb 100644 --- a/Doc/using/windows.rst +++ b/Doc/using/windows.rst @@ -552,7 +552,7 @@ If the first line of a script file starts with ``#!``, it is known as a "shebang" line. Linux and other Unix like operating systems have native support for such lines and are commonly used on such systems to indicate how a script should be executed. This launcher allows the same facilities to be -using with Python scripts on Windows and the examples above demonstrate their +used with Python scripts on Windows and the examples above demonstrate their use. To allow shebang lines in Python scripts to be portable between Unix and From 0100e52c42acd758c4a6a9e3a4fa07b9b623cd8d Mon Sep 17 00:00:00 2001 From: Wieland Hoffmann Date: Thu, 27 Apr 2017 22:39:58 +0200 Subject: [PATCH 2/2] Make it clear that shebang lines are commonly used on Linux --- Doc/using/windows.rst | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Doc/using/windows.rst b/Doc/using/windows.rst index c55821402502bb..68687e9f3ec367 100644 --- a/Doc/using/windows.rst +++ b/Doc/using/windows.rst @@ -550,9 +550,9 @@ Shebang Lines If the first line of a script file starts with ``#!``, it is known as a "shebang" line. Linux and other Unix like operating systems have native -support for such lines and are commonly used on such systems to indicate how -a script should be executed. This launcher allows the same facilities to be -used with Python scripts on Windows and the examples above demonstrate their +support for such lines and they are commonly used on such systems to indicate +how a script should be executed. This launcher allows the same facilities to +be used with Python scripts on Windows and the examples above demonstrate their use. To allow shebang lines in Python scripts to be portable between Unix and