diff --git a/about_types.go b/about_types.go index a5a1131..e37176a 100644 --- a/about_types.go +++ b/about_types.go @@ -2,12 +2,12 @@ package go_koans type coolNumber int -func (cn coolNumber) double() int { +func (cn coolNumber) multiplyByTwo() int { return int(cn) * 2 } func aboutTypes() { i := coolNumber(4) assert(i == coolNumber(__int__)) // values can be converted between compatible types - assert(i.double() == __int__) // you can add methods on any type you define + assert(i.multiplyByTwo() == __int__) // you can add methods on any type you define }