Skip to content

Commit

Permalink
fix(internal): append a new line to comply with go fmt (#4028)
Browse files Browse the repository at this point in the history
This was discovered on the last regen:
6b438b6
  • Loading branch information
codyoss committed May 3, 2021
1 parent e048419 commit a297278
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 321 deletions.
2 changes: 1 addition & 1 deletion internal/gapicgen/gensnippets/gensnippets.go
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@ func writeExamples(outDir string, exs []*doc.Example, fset *token.FileSet, regio
if _, err := f.WriteString(s); err != nil {
return err
}
if _, err := fmt.Fprintf(f, "// [END %v]\n", tag); err != nil {
if _, err := fmt.Fprintf(f, "\n// [END %v]\n", tag); err != nil {
return err
}
}
Expand Down

0 comments on commit a297278

Please sign in to comment.