From 4f385e30c50f26dce821c2528a8b40dca5c60426 Mon Sep 17 00:00:00 2001 From: "rjwats@gmail.com" Date: Sat, 3 Mar 2018 12:14:18 +0000 Subject: [PATCH] minor correction to docs --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index f43a40e..4e71a2c 100644 --- a/README.md +++ b/README.md @@ -143,7 +143,7 @@ exampleSettingsService.begin(); There will now be a REST service exposed on "/exampleSettings" for reading and writing (GET/POST) the settings. Any modifications will be persisted in SPIFFS, in this case to "/config/exampleSettings.json" -Sometimes you need to perform an action when the settings are updated, you can achieve this by overriding the onConfigUpdated() function which gets called every time the settings are updated. You can also perform an action when the service starts by overriding the begin() function, being sure to call super.begin(): +Sometimes you need to perform an action when the settings are updated, you can achieve this by overriding the onConfigUpdated() function which gets called every time the settings are updated. You can also perform an action when the service starts by overriding the begin() function, being sure to call SettingsService::begin(): ```cpp