From 45a5268c5a7fb8c5479262df39b7b5452ee77ed6 Mon Sep 17 00:00:00 2001 From: Axel Cocat Date: Sun, 29 Aug 2021 12:14:02 +0200 Subject: [PATCH] put http verbs in backquotes in documentation --- GlobalMethods.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/GlobalMethods.h b/GlobalMethods.h index 2b3a1e4..4067107 100644 --- a/GlobalMethods.h +++ b/GlobalMethods.h @@ -2661,7 +2661,7 @@ namespace LuaGlobalFunctions * @proto (httpMethod, url, body, contentType, function) * @proto (httpMethod, url, body, contentType, headers, function) * - * @param string httpMethod : the HTTP method to use (possible values are: "GET", "HEAD", "POST", "PUT", "PATCH", "DELETE", "OPTIONS") + * @param string httpMethod : the HTTP method to use (possible values are: `"GET"`, `"HEAD"`, `"POST"`, `"PUT"`, `"PATCH"`, `"DELETE"`, `"OPTIONS"`) * @param string url : the URL to query * @param table headers : a table with string key-value pairs containing the request headers * @param string body : the request's body (only used for POST, PUT and PATCH requests)