소스 검색

Added semi-colon to esp_event_loop_create(...)

Title sums it up.

Merges https://github.com/espressif/esp-idf/pull/4711
Rusty Eddy 6 년 전
부모
커밋
eda9d8ffa8
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      docs/en/api-reference/system/esp_event.rst

+ 1 - 1
docs/en/api-reference/system/esp_event.rst

@@ -54,7 +54,7 @@ In code, the flow above may look like as follows:
 
 
         esp_event_loop_handle_t loop_handle;
         esp_event_loop_handle_t loop_handle;
 
 
-        esp_event_loop_create(&loop_args, &loop_handle)
+        esp_event_loop_create(&loop_args, &loop_handle);
 
 
         // 3. Register event handler defined in (1). MY_EVENT_BASE and MY_EVENT_ID specifies a hypothetical
         // 3. Register event handler defined in (1). MY_EVENT_BASE and MY_EVENT_ID specifies a hypothetical
         // event that handler run_on_event should execute on when it gets posted to the loop.
         // event that handler run_on_event should execute on when it gets posted to the loop.