about summary refs log tree commit diff
path: root/lib
diff options
context:
space:
mode:
authorfranck cuny <franck@lumberjaph.net>2010-06-03 09:59:27 +0200
committerfranck cuny <franck@lumberjaph.net>2010-06-03 09:59:27 +0200
commit76f2776bc147cc3077be947eef0effae9f5367f9 (patch)
tree4da02b541e9f8d35e5f20d63908cd33fe64dc7f8 /lib
parentbasic tests for serialization (diff)
downloadnet-http-api-76f2776bc147cc3077be947eef0effae9f5367f9.tar.gz
fix attribute declaration
Diffstat (limited to 'lib')
-rw-r--r--lib/MooseX/Net/API/Parser/XML.pm2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/MooseX/Net/API/Parser/XML.pm b/lib/MooseX/Net/API/Parser/XML.pm
index 8aee74f..7198175 100644
--- a/lib/MooseX/Net/API/Parser/XML.pm
+++ b/lib/MooseX/Net/API/Parser/XML.pm
@@ -4,7 +4,7 @@ use XML::Simple;
 use Moose;
 extends 'MooseX::Net::API::Parser';
 
-has _xml_parser(
+has _xml_parser => (
     is      => 'rw',
     isa     => 'XML::Simple',
     lazy    => 1,