From d8c60506ee74f95118de2d691dcbfd8fee576300 Mon Sep 17 00:00:00 2001 From: crusadergo Date: Fri, 24 Mar 2017 17:43:42 +0500 Subject: [PATCH] Fix typo in the decorator --- decorator.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/decorator.rb b/decorator.rb index f7714b8..5db898e 100644 --- a/decorator.rb +++ b/decorator.rb @@ -4,7 +4,7 @@ class ItemDecorator def initialize(item) @item = item end - # this needs to be delegated with other efective way + # this needs to be delegated with other effective way def use @item.use end