From c295e96b750c10da1d7c67b9d123bb34e3b7ee0e Mon Sep 17 00:00:00 2001 From: Nay Zaw Oo Date: Wed, 15 Nov 2017 00:03:08 +0630 Subject: [PATCH] Update 0.2.5.md. change title --- en/02.5.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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