From d93e185ca97c7f0410eba0544a8ff88acbb9146b Mon Sep 17 00:00:00 2001 From: Clemens Kirchgatterer Date: Tue, 19 Mar 2024 10:00:46 +0100 Subject: [PATCH] Fix semantic typo in generic-examples.rst exists -> exits --- doc/esp8266wifi/generic-examples.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/esp8266wifi/generic-examples.rst b/doc/esp8266wifi/generic-examples.rst index e139e3e5b5..8cd919d156 100644 --- a/doc/esp8266wifi/generic-examples.rst +++ b/doc/esp8266wifi/generic-examples.rst @@ -60,7 +60,7 @@ Alternatively, it can be declared as ``static`` in both function and global scop .. code:: cpp disconnectedEventHandler = nullptr; -Take note that lifetime of the callback handler is up to the app. e.g. if ``onStationModeDisconnected`` is declared in the function scope, it would be discarded immediately after the function exists. +Take note that lifetime of the callback handler is up to the app. e.g. if ``onStationModeDisconnected`` is declared in the function scope, it would be discarded immediately after the function exits. The Code ~~~~~~~~