Update 0.2.5.md.

change title
This commit is contained in:
Nay Zaw Oo
2017-11-15 00:03:08 +06:30
committed by GitHub
parent 70c8a68675
commit c295e96b75

View File

@@ -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