Skip to content

Commit

Permalink
fixed typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Paciente8159 committed Mar 11, 2024
1 parent 896a6fa commit f3092aa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion uCNC/src/hal/mcus/esp32/esp32_arduino.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -650,7 +650,7 @@ extern "C"
return ENDPOINT_GET;
case HTTP_POST:
return ENDPOINT_POST;
case HTTP_UPDATE:
case HTTP_PUT:
return ENDPOINT_PUT;
case HTTP_DELETE:
return ENDPOINT_DELETE;
Expand Down
2 changes: 1 addition & 1 deletion uCNC/src/hal/mcus/esp8266/esp8266_arduino.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -608,7 +608,7 @@ extern "C"
return ENDPOINT_GET;
case HTTP_POST:
return ENDPOINT_POST;
case HTTP_UPDATE:
case HTTP_PUT:
return ENDPOINT_PUT;
case HTTP_DELETE:
return ENDPOINT_DELETE;
Expand Down
2 changes: 1 addition & 1 deletion uCNC/src/hal/mcus/rp2040/rp2040_arduino.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ uint8_t endpoint_request_method(void)
return ENDPOINT_GET;
case HTTP_POST:
return ENDPOINT_POST;
case HTTP_UPDATE:
case HTTP_PUT:
return ENDPOINT_PUT;
case HTTP_DELETE:
return ENDPOINT_DELETE;
Expand Down

0 comments on commit f3092aa

Please sign in to comment.