summaryrefslogtreecommitdiffstats
path: root/PC/launcher.c
diff options
context:
space:
mode:
authorIkko Ashimine <eltociear@gmail.com>2021-02-20 10:03:50 (GMT)
committerGitHub <noreply@github.com>2021-02-20 10:03:50 (GMT)
commit4233ff3ee4add287b3617f38943d01a7a6f4d7c4 (patch)
tree3c195e72e832e9a6e1f8c02ec204a7936e04ee0e /PC/launcher.c
parent292f23186c6573bc1c3fa4f6e91116e8ee444cf4 (diff)
downloadcpython-4233ff3ee4add287b3617f38943d01a7a6f4d7c4.zip
cpython-4233ff3ee4add287b3617f38943d01a7a6f4d7c4.tar.gz
cpython-4233ff3ee4add287b3617f38943d01a7a6f4d7c4.tar.bz2
Fix typo in launcher.c (GH-24497)
Diffstat (limited to 'PC/launcher.c')
-rw-r--r--PC/launcher.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/PC/launcher.c b/PC/launcher.c
index cc2d35b..f5b225a 100644
--- a/PC/launcher.c
+++ b/PC/launcher.c
@@ -1552,8 +1552,8 @@ Launcher arguments:\n\n\
fputws(L"\nany of the following, (in priority order):", stdout);
fputws(L"\n An active virtual environment", stdout);
fputws(L"\n A shebang line in the script (if present)", stdout);
- fputws(L"\n With -2 or -3 flag a matching PY_PYTHON2 or PY_PYTHON3 Enviroment variable", stdout);
- fputws(L"\n A PY_PYTHON Enviroment variable", stdout);
+ fputws(L"\n With -2 or -3 flag a matching PY_PYTHON2 or PY_PYTHON3 Environment variable", stdout);
+ fputws(L"\n A PY_PYTHON Environment variable", stdout);
fputws(L"\n From [defaults] in py.ini in your %LOCALAPPDATA%\\py.ini", stdout);
fputws(L"\n From [defaults] in py.ini beside py.exe (use `where py` to locate)", stdout);
fputws(L"\n\nThe following help text is from Python:\n\n", stdout);