Skip to content

Commit

Permalink
fix code checking
Browse files Browse the repository at this point in the history
  • Loading branch information
sdghchj committed May 29, 2020
1 parent 59734e3 commit c03e213
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion operation.go
Expand Up @@ -210,7 +210,7 @@ func (operation *Operation) ParseParamComment(commentLine string, astFile *ast.F
return false
}
orderedNames := make([]string, 0, len(schema.Properties))
for k = range schema.Properties {
for k := range schema.Properties {
orderedNames = append(orderedNames, k)
}
sort.Strings(orderedNames)
Expand Down

0 comments on commit c03e213

Please sign in to comment.