diff --git a/examples/interfaces/interfaces.go b/examples/interfaces/interfaces.go index f22721f..20e6020 100644 --- a/examples/interfaces/interfaces.go +++ b/examples/interfaces/interfaces.go @@ -53,8 +53,9 @@ func main() { s := square{width: 3, height: 4} c := circle{radius: 5} - // The `circle` and `square` struct types both satisfy - // the `geometry` interface so we can use instances of + // The `circle` and `square` struct types both + // implement the `geometry` interface so we can use + // instances of // these structs as arguments to `measure. measure(s) measure(c)