From: Dave Rolsky Date: Wed, 8 Apr 2009 02:05:08 +0000 (-0500) Subject: Fix a code typo X-Git-Tag: 0.75~26 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=f9b1ab71234d11a9121de96c574ca980bbfb3eaa;hp=22161b6c62bcf3c908adca58328201addbe9f750;p=gitmo%2FMoose.git Fix a code typo --- diff --git a/lib/Moose/Unsweetened.pod b/lib/Moose/Unsweetened.pod index 41e0597..23967d1 100644 --- a/lib/Moose/Unsweetened.pod +++ b/lib/Moose/Unsweetened.pod @@ -153,7 +153,7 @@ helpers like C. local $Carp::CarpLevel = $Carp::CarpLevel + 1; - $birth_date->isa('DateTime') ) + $birth_date->isa('DateTime') or confess 'birth_date must be a DateTime object'; }