Skip to content

Commit

Permalink
Merge pull request #10 from nkmr-jp/develop
Browse files Browse the repository at this point in the history
🐛 Fix typo in HTTP Request Body Parameter comment in run.js
  • Loading branch information
nkmr-jp authored Dec 14, 2023
2 parents 93813b4 + b880f1a commit e55f849
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/run.js
Original file line number Diff line number Diff line change
Expand Up @@ -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{
Expand Down

0 comments on commit e55f849

Please sign in to comment.