fix(docs): Minor update to esp_event.rst for improved user experience

This commit adds semicolons in c-code blocks in esp_event.rst for
improved user experience when directly copying and pasting code.

Closes https://github.com/espressif/esp-idf/issues/13156
pull/13572/head
Sudeep Mohanty 2024-02-19 13:39:12 +01:00
rodzic 931eaf7320
commit 57627f5883
1 zmienionych plików z 2 dodań i 2 usunięć

Wyświetl plik

@ -100,13 +100,13 @@ Event base declaration:
.. code-block:: c
ESP_EVENT_DECLARE_BASE(EVENT_BASE)
ESP_EVENT_DECLARE_BASE(EVENT_BASE);
Event base definition:
.. code-block:: c
ESP_EVENT_DEFINE_BASE(EVENT_BASE)
ESP_EVENT_DEFINE_BASE(EVENT_BASE);
.. note::