Skip to content

Commit

Permalink
Removes space between docs and function declaration
Browse files Browse the repository at this point in the history
  • Loading branch information
c4milo committed Sep 1, 2014
1 parent 67371f6 commit 4537da0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion generator/operations_tmpl.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,14 +22,14 @@ var opsTmpl = `
{{$output := findType .Output.Message}}
{{if ne $soapAction ""}}
{{if ne .Doc ""}}// {{.Doc}}{{end}}
{{if gt $faults 0}}
//
// Error can be either of the following types:
// {{range .Faults}}
// - {{.Name}} {{.Doc}}{{end}}
//
{{end}}
{{if ne .Doc ""}}// {{.Doc}}{{end}}
func (service *{{$portType}}) {{makePublic .Name}} (request *{{$requestType}}) (*{{$output}}, error) {
response := &{{$output}}{}
err := service.client.Call("{{$soapAction}}", request, response)
Expand Down

0 comments on commit 4537da0

Please sign in to comment.