Typo fixed

This commit is contained in:
Andreas Mallek 2018-08-27 23:32:46 +02:00 committed by GitHub
parent 3f2bb1b044
commit b24a1c3be3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

2
go.md
View File

@ -506,7 +506,7 @@ See: [Methods](https://tour.golang.org/methods/1)
```go
func (v *Vertex) Scale(f float64) {
v.X = v.X * f
v.y = v.Y * f
v.Y = v.Y * f
}
```
{: data-line="1"}