diff --git a/ch7/ch7-03.md b/ch7/ch7-03.md index cf15d45..cf2cad8 100644 --- a/ch7/ch7-03.md +++ b/ch7/ch7-03.md @@ -34,7 +34,7 @@ func (*IntSet) String() string var _ = IntSet{}.String() // compile error: String requires *IntSet receiver ``` -但是我们可以在一个IntSet值上调用这个方法: +但是我们可以在一个IntSet变量上调用这个方法: ```go var s IntSet