From: Dave Rolsky Date: Thu, 3 Feb 2011 21:49:55 +0000 (-0600) Subject: Add a missing comma in code X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=0f4c9ec089ca428cb9407b49311ae4eae7928e31;p=gitmo%2Fmoose-presentations.git Add a missing comma in code --- diff --git a/moose-class/slides/index.html b/moose-class/slides/index.html index 30b4f91..b2d5247 100644 --- a/moose-class/slides/index.html +++ b/moose-class/slides/index.html @@ -3353,7 +3353,7 @@ has account => ( isa => 'BankAccount', handles => { receive_100 => - [ 'deposit', 100 ] + [ 'deposit', 100 ], give_100 => [ 'withdraw', 100 ] },