summaryrefslogtreecommitdiffstatshomepage
path: root/windows/sleep.c
diff options
context:
space:
mode:
Diffstat (limited to 'windows/sleep.c')
-rw-r--r--windows/sleep.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/windows/sleep.c b/windows/sleep.c
index 214d6d622a..6043ec7b7b 100644
--- a/windows/sleep.c
+++ b/windows/sleep.c
@@ -1,5 +1,5 @@
/*
- * This file is part of the Micro Python project, http://micropython.org/
+ * This file is part of the MicroPython project, http://micropython.org/
*
* The MIT License (MIT)
*
@@ -31,7 +31,7 @@
HANDLE waitTimer = NULL;
void init_sleep(void) {
- waitTimer = CreateWaitableTimer(NULL, TRUE, NULL);
+ waitTimer = CreateWaitableTimer(NULL, TRUE, NULL);
}
void deinit_sleep(void) {