diff --git a/exercises/practice/two-bucket/src/two_bucket.cr b/exercises/practice/two-bucket/src/two_bucket.cr index 96b8b7d2..895908ec 100644 --- a/exercises/practice/two-bucket/src/two_bucket.cr +++ b/exercises/practice/two-bucket/src/two_bucket.cr @@ -7,7 +7,7 @@ module TwoBucket struct Result property moves, other_bucket, goal_bucket - def initialize(moves : UInt32, @other_bucket : UInt32, @goal_bucket : Bucket) + def initialize(@moves : UInt32, @other_bucket : UInt32, @goal_bucket : Bucket) end end