summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorABDUL NIYAS P M <abdulniyaspm.sayone@gmail.com>2019-03-27 14:23:45 +0530
committerGiampaolo Rodola <g.rodola@gmail.com>2019-03-27 09:53:45 +0100
commit05338fb0e67cb087844fdc1a10e0d4bb0617aba2 (patch)
tree4b12708aa0329932b810cf98f5f79a97b676a16b
parent73337e03e8eb6f78dba791a91da34cd244172159 (diff)
downloadpsutil-05338fb0e67cb087844fdc1a10e0d4bb0617aba2.tar.gz
Typo fixed (#1469)
-rw-r--r--psutil/_psutil_windows.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/psutil/_psutil_windows.c b/psutil/_psutil_windows.c
index 9fd8d9c7..4dfae2d5 100644
--- a/psutil/_psutil_windows.c
+++ b/psutil/_psutil_windows.c
@@ -377,7 +377,7 @@ psutil_proc_cpu_times(PyObject *self, PyObject *args) {
/*
* User and kernel times are represented as a FILETIME structure
- * wich contains a 64-bit value representing the number of
+ * which contains a 64-bit value representing the number of
* 100-nanosecond intervals since January 1, 1601 (UTC):
* http://msdn.microsoft.com/en-us/library/ms724284(VS.85).aspx
* To convert it into a float representing the seconds that the
@@ -1118,7 +1118,7 @@ psutil_proc_threads(PyObject *self, PyObject *args) {
/*
* User and kernel times are represented as a FILETIME structure
- * wich contains a 64-bit value representing the number of
+ * which contains a 64-bit value representing the number of
* 100-nanosecond intervals since January 1, 1601 (UTC):
* http://msdn.microsoft.com/en-us/library/ms724284(VS.85).aspx
* To convert it into a float representing the seconds that the