Fix "函数" and "方法"

This commit is contained in:
krahets
2023-06-24 16:37:56 +08:00
parent 674ff2910a
commit 504dff1728
10 changed files with 18 additions and 18 deletions
+1 -1
View File
@@ -9,7 +9,7 @@ type Vertex struct {
Val int
}
// NewVertex 构造方法
// NewVertex 构造函数
func NewVertex(val int) Vertex {
return Vertex{
Val: val,