Merge pull request #768 from amallek/patch-1

Typo fixed
This commit is contained in:
Rico Sta. Cruz 2018-08-28 12:49:18 +08:00 committed by GitHub
commit f3040aa0ff
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"}