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
+1 -1
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()
``` ```