1
0
Fork 0
mirror of https://github.com/tmrts/go-patterns.git synced 2025-04-03 13:13:34 +03:00
This commit is contained in:
Gerasimos (Makis) Maropoulos 2017-05-05 04:21:56 +00:00 committed by GitHub
commit d9845cf612

View file

@ -25,7 +25,7 @@ func (o *Operation) Operate(leftValue, rightValue int) int {
```go
type Addition struct{}
func (Addition) Apply(lval, rval int) int {
func (a Addition) Apply(lval, rval int) int {
return lval + rval
}
```