diff --git a/en/02.5.md b/en/02.5.md index 21b57a6b..5d62e0dc 100644 --- a/en/02.5.md +++ b/en/02.5.md @@ -270,7 +270,7 @@ func main() { mark.SayHi() } ``` -### Method overload +### Method Overriding If we want Employee to have its own method `SayHi`, we can define a method that has the same name in Employee, and it will hide `SayHi` in Human when we call it. ```Go