Pārlūkot izejas kodu

Fix typo in Zephyr simple example (#2738)

Fixes small typo of elapsed in Zephyr simple example.

Signed-off-by: Daniel Mangum <georgedanielmangum@gmail.com>
Daniel Mangum 2 gadi atpakaļ
vecāks
revīzija
797e534cec
1 mainītis faili ar 1 papildinājumiem un 1 dzēšanām
  1. 1 1
      product-mini/platforms/zephyr/simple/src/main.c

+ 1 - 1
product-mini/platforms/zephyr/simple/src/main.c

@@ -248,7 +248,7 @@ fail1:
 
     end = k_uptime_get_32();
 
-    printf("elpase: %d\n", (end - start));
+    printf("elapsed: %d\n", (end - start));
 }
 
 #define MAIN_THREAD_STACK_SIZE (CONFIG_MAIN_THREAD_STACK_SIZE)