Upgrade-Doku: Hinweis auf benötigtes Perl-Modul IPC::Run
[kivitendo-erp.git] / SL / Helper / Object.pm
index 9c0b986..922dafb 100644 (file)
@@ -76,11 +76,11 @@ sub delegate {
       die "invalid args handling '$params->{args}'" unless defined $target_code;
 
       eval "
-        sub $caller::$method {
+        sub ${caller}::$method {
           $pre_context $target_code$method_joiner$target_method$args_string; $post_context
         }
         1;
-      " or die "could not create $caller::$method: $@";
+      " or die "could not create ${caller}::$method: $@";
     }
   }
 }
@@ -109,9 +109,9 @@ SL::Helper::Object - Meta Object Helper Mixin
 
 =head1 DESCRIPTION
 
-Sick of writing getter, setter? No because Rose::Object::MakeMethods got you covered.
+Sick of writing getter, setter? No because Rose::Object::MakeMethods has you covered.
 
-Sick of writing all the rest that Rose an't do? Put it here. Functionality in this
+Sick of writing all the rest that Rose can't do? Put it here. Functionality in this
 mixin is passed as an include parameter, but are still described as functions:
 
 =head1 FUNCTIONS