diff --git a/ampel-firmware/web_config.cpp b/ampel-firmware/web_config.cpp
index e3066c0831b24e9475b20ef648ba629331333e4f..a9fe125f4783e2bc3613deb70dbc7b8c97291e73 100644
--- a/ampel-firmware/web_config.cpp
+++ b/ampel-firmware/web_config.cpp
@@ -233,14 +233,14 @@ namespace web_config {
       Serial.println(ssid);
       strncpy(iotWebConf->getWifiSsidParameter()->valueBuffer, ssid, iotWebConf->getWifiSsidParameter()->getLength());
       iotWebConf->saveConfig();
-    },   F(" name (Sets SSID to name)"));
+    },   F("name (Sets SSID to name)"));
 
     sensor_console::defineStringCommand("pwd", [](char *ssid) {
       Serial.print(F("Setting WiFi password to "));
       Serial.println(ssid);
       strncpy(iotWebConf->getWifiPasswordParameter()->valueBuffer, ssid, iotWebConf->getWifiPasswordParameter()->getLength());
       iotWebConf->saveConfig();
-    }, F(" abc (Sets WiFi password to abc)"));
+    }, F("abc (Sets WiFi password to abc)"));
 
     sensor_console::defineIntCommand("wifi", [](int32_t onOff) {
       config::is_wifi_on = onOff;