From: Dave Rolsky Date: Thu, 17 Jun 2010 19:02:49 +0000 (-0500) Subject: Slight grammar tweak X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5a75c981fa69fbc7d867ac944c50426e52de8b35;p=gitmo%2Fmoose-presentations.git Slight grammar tweak --- diff --git a/moose-class/exercises/t/01-classes.t b/moose-class/exercises/t/01-classes.t index 0e83a2e..c056573 100644 --- a/moose-class/exercises/t/01-classes.t +++ b/moose-class/exercises/t/01-classes.t @@ -17,9 +17,9 @@ # # Person->new( [ 'Lisa', 'Smith' ] ); # -# Hint: A quick and dirty way to check this is to use ref() to check if the -# first value in @_ is an array reference (perldoc -f ref). A nicer way to do -# this would be use to use Scalar::Util::reftype(). +# Hint: A quick and dirty way to check for this is to use ref() to check if +# the first value in @_ is an array reference (perldoc -f ref). A nicer way to +# do this would be use to use Scalar::Util::reftype(). # # Create an Employee class in lib/Employee.pm #