Skip to content

Commit e55f849

Browse files
authored
Merge pull request #10 from nkmr-jp/develop
🐛 Fix typo in HTTP Request Body Parameter comment in run.js
2 parents 93813b4 + b880f1a commit e55f849

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/run.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ function buildContent(go, path, comment, paramType) {
151151
content += `import "time"\n\n`
152152
}
153153
if (paramType === "body") {
154-
content += `// ${go.split(" ")[1]} is the struct of the the HTTP Request Body Parameter.\n//`
154+
content += `// ${go.split(" ")[1]} is the struct of the HTTP Request Body Parameter.\n//`
155155
} else if (paramType === "query") {
156156
content += `// ${go.split(" ")[1]} is the struct of the HTTP Request Query Parameter.\n//`
157157
}else{

0 commit comments

Comments
 (0)