Skip to content

Commit 649414c

Browse files
committed
Fix typo in comment.
1 parent 7d4bb9f commit 649414c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

Include/pydebug.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ extern DL_IMPORT(int) Py_TabcheckFlag;
1616
extern DL_IMPORT(int) Py_UnicodeFlag;
1717
extern DL_IMPORT(int) Py_IgnoreEnvironmentFlag;
1818

19-
/* this is a wrapper around getenv() the pays attention to
19+
/* this is a wrapper around getenv() that pays attention to
2020
Py_IgnoreEnvironmentFlag. It should be used for getting variables like
2121
PYTHONPATH and PYTHONHOME from the environment */
2222
#define Py_GETENV(s) (Py_IgnoreEnvironmentFlag ? NULL : getenv(s))

0 commit comments

Comments
 (0)