From 2bb1b5a4d5f3a80ce229b6d50d7b03ac2d007cec Mon Sep 17 00:00:00 2001 From: Clemens Kirchgatterer Date: Tue, 19 Mar 2024 16:01:59 +0100 Subject: [PATCH] Fix semantic typo in generic-examples.rst (#9107) 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 ~~~~~~~~