* 修复小问题 * Update 11.12.md 修复代码没有换行的问题
@@ -211,7 +211,8 @@ type Fooer interface {
```go
type Bar struct{}
-func (b Bar) ImplementsFooer() {} func (b Bar) Foo() {}
+func (b Bar) ImplementsFooer() {}
+func (b Bar) Foo() {}
```
大部分代码并不使用这样的约束,因为它限制了接口的实用性。