Merge pull request #1111 from mantrax314/mantrax314-patch-1

Fix Typo in Golang cheatsheet # Methods -> Receivers
This commit is contained in:
Rico Sta. Cruz 2020-06-21 14:01:35 +10:00 committed by GitHub
commit b0a436587f
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

@ -547,7 +547,7 @@ func (v Vertex) Abs() float64 {
{: data-line="1"} {: data-line="1"}
```go ```go
v: = Vertex{1, 2} v := Vertex{1, 2}
v.Abs() v.Abs()
``` ```