diff --git a/FAQ.md b/FAQ.md index 5a5f3c3..f7eca86 100644 --- a/FAQ.md +++ b/FAQ.md @@ -852,7 +852,6 @@ error: ambiguous overload for 'operator=' (operand types are 'String' and 'Ardui The solution is to remove the ambiguity with any of the following replacement: ```c++ -ssid = (String)network["ssid"]; ssid = (const char*)network["ssid"]; ssid = network["ssid"].asString(); ssid = network["ssid"].as();