Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
DocLambda committed Sep 23, 2021
1 parent 7ed399c commit d9cc617
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
3 changes: 2 additions & 1 deletion func_go110.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build go1.10
// +build go1.10

package xpath
Expand All @@ -11,6 +12,6 @@ func round(f float64) int {
return int(math.Round(f))
}

func newStringBuilder() stringBuilder{
func newStringBuilder() stringBuilder {
return &strings.Builder{}
}
1 change: 1 addition & 0 deletions func_pre_go110.go
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
//go:build !go1.10
// +build !go1.10

package xpath
Expand Down

0 comments on commit d9cc617

Please sign in to comment.