Skip to content

Commit

Permalink
Fix example naming issue.
Browse files Browse the repository at this point in the history
Detected by go vet. See https://godoc.org/testing for example naming
rules.
  • Loading branch information
dmitshur committed Apr 23, 2016
1 parent dfe7445 commit d29d17b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion mgl32/matstack/transformstack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func TestRebase(t *testing.T) {
}
}

func ExampleReseed() {
func ExampleTransformStack_Reseed() {
stack := NewTransformStack()

scale := mgl32.Scale3D(2, 2, 2)
Expand Down
2 changes: 1 addition & 1 deletion mgl64/matstack/transformstack_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -124,7 +124,7 @@ func TestRebase(t *testing.T) {
}
}

func ExampleReseed() {
func ExampleTransformStack_Reseed() {
stack := NewTransformStack()

scale := mgl64.Scale3D(2, 2, 2)
Expand Down

0 comments on commit d29d17b

Please sign in to comment.