From: Roderick Schertler Date: Fri, 20 Dec 1996 18:23:57 +0000 (-0500) Subject: obstruct pod2man doc tweaks X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=b133f4ec823b00faf9bd083e0eb8e7a53ba7bfca;p=p5sagit%2Fp5-mst-13.2.git obstruct pod2man doc tweaks p5p-msgid: <3923.851106237@eeyore.ibcinc.com> --- diff --git a/lib/Class/Template.pm b/lib/Class/Template.pm index e45a5d3..311c72a 100644 --- a/lib/Class/Template.pm +++ b/lib/Class/Template.pm @@ -30,6 +30,19 @@ use strict; Class::Template - struct/member template builder +=head1 SYNOPSIS + + use Class::Template; + struct(name => { key1 => type1, key2 => type2 }); + + package Myobj; + use Class::Template; + members Myobj { key1 => type1, key2 => type2 }; + +=head1 DESCRIPTION + +This module uses perl5 classes to create nested data types. + =head1 EXAMPLES =item * Example 1 diff --git a/lib/Time/tm.pm b/lib/Time/tm.pm index 87fc883..d1df295 100644 --- a/lib/Time/tm.pm +++ b/lib/Time/tm.pm @@ -13,6 +13,10 @@ __END__ Time::tm.pm - internal object used by Time::gmtime and Time::localtime +=head1 SYNOPSIS + +Don't use this module directly. + =head1 DESCRIPTION This module is used internally as a base class by Time::localtime And