From b880f1a797b4e6bb729fee022b4e8c2230ab74fb Mon Sep 17 00:00:00 2001 From: nkmr-jp Date: Fri, 15 Dec 2023 02:25:54 +0900 Subject: [PATCH] :bug: Fix typo in HTTP Request Body Parameter comment in run.js --- src/run.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/run.js b/src/run.js index b1b65d7..8c6e7e7 100644 --- a/src/run.js +++ b/src/run.js @@ -151,7 +151,7 @@ function buildContent(go, path, comment, paramType) { content += `import "time"\n\n` } if (paramType === "body") { - content += `// ${go.split(" ")[1]} is the struct of the the HTTP Request Body Parameter.\n//` + content += `// ${go.split(" ")[1]} is the struct of the HTTP Request Body Parameter.\n//` } else if (paramType === "query") { content += `// ${go.split(" ")[1]} is the struct of the HTTP Request Query Parameter.\n//` }else{