Slight grammar tweak
Dave Rolsky [Thu, 17 Jun 2010 19:02:49 +0000 (14:02 -0500)]
moose-class/exercises/t/01-classes.t

index 0e83a2e..c056573 100644 (file)
@@ -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
 #