Skip to content

Commit 977120c

Browse files
d-a-vbmooij-beeliners
authored andcommitted
Update PathArgServer.ino
fix trailing space
1 parent a626c5f commit 977120c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

libraries/ESP8266WebServer/examples/PathArgServer/PathArgServer.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ void setup(void) {
3737
String user = server.pathArg(0);
3838
server.send(200, "text/plain", "User: '" + user + "'");
3939
});
40-
40+
4141
server.on("/users/{}/devices/{}", []() {
4242
String user = server.pathArg(0);
4343
String device = server.pathArg(1);

0 commit comments

Comments
 (0)