additional docs
[gitmo/MooseX-MetaDescription.git] / lib / MooseX / MetaDescription / Description.pm
index aeefdd7..5e0298b 100644 (file)
@@ -6,6 +6,8 @@ our $AUTHORITY = 'cpan:STEVAN';
 
 has 'descriptor' => (
     is       => 'ro',  
+    does     => 'MooseX::MetaDescription::Meta::Trait',   
+    weak_ref => 1, 
     required => 1,
 );
 
@@ -17,19 +19,21 @@ __END__
 
 =head1 NAME
 
-MooseX::MetaDescription::Description - A Moosey solution to this problem
-
-=head1 SYNOPSIS
-
-  use MooseX::MetaDescription::Description;
+MooseX::MetaDescription::Description - A base class for Meta Descriptions
 
 =head1 DESCRIPTION
 
+This is a base class for building more complex custom meta-description
+classes. All it does by default is to provide a back-link to the original
+attribute it is describing.
+
 =head1 METHODS 
 
 =over 4
 
-=item B<>
+=item B<descriptor>
+
+The actual attribute that is being described.
 
 =back