xcvcx

Revision:
1:9e60464b3c72
Parent:
0:7b4fe69d1af5
--- a/main.cpp	Fri Dec 23 05:58:48 2016 +0000
+++ b/main.cpp	Mon Dec 26 07:33:51 2016 +0000
@@ -2,12 +2,11 @@
 
 DigitalOut led1(LED1);
 
-// main() runs in its own thread in the OS
-// (note the calls to Thread::wait below for delays)
+// main() runs in its own thread in THE OS
+// (note THE calls to Thread::wait below for delays)
 int main() {
     while (true) {
         led1 = !led1;
         Thread::wait(500);
     }
 }
-