Skip to content

Commit 4537da0

Browse files
committed
Removes space between docs and function declaration
1 parent 67371f6 commit 4537da0

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

generator/operations_tmpl.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,14 +22,14 @@ var opsTmpl = `
2222
{{$output := findType .Output.Message}}
2323
2424
{{if ne $soapAction ""}}
25-
{{if ne .Doc ""}}// {{.Doc}}{{end}}
2625
{{if gt $faults 0}}
2726
//
2827
// Error can be either of the following types:
2928
// {{range .Faults}}
3029
// - {{.Name}} {{.Doc}}{{end}}
3130
//
3231
{{end}}
32+
{{if ne .Doc ""}}// {{.Doc}}{{end}}
3333
func (service *{{$portType}}) {{makePublic .Name}} (request *{{$requestType}}) (*{{$output}}, error) {
3434
response := &{{$output}}{}
3535
err := service.client.Call("{{$soapAction}}", request, response)

0 commit comments

Comments
 (0)