docs: fix all references to HTTPD_{GET,POST,PUT}

This commit is contained in:
nick black
2024-10-16 03:01:13 -04:00
committed by Nilesh Kale
parent c4bde5dfae
commit 6b3ae2822d
3 changed files with 3 additions and 3 deletions

View File

@@ -487,7 +487,7 @@ typedef struct httpd_uri {
* // URI handler structure
* httpd_uri_t my_uri {
* .uri = "/my_uri/path/xyz",
* .method = HTTPD_GET,
* .method = HTTP_GET,
* .handler = my_uri_handler,
* .user_ctx = NULL
* };