From: Florian Ragwitz Date: Mon, 27 Apr 2009 19:05:04 +0000 (+0200) Subject: Fix pod indenting. X-Git-Tag: 0.84~30 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=aca6da1de7a7e7e6beefbe670a862ea9b1728901;p=gitmo%2FClass-MOP.git Fix pod indenting. --- diff --git a/lib/Class/MOP/Class.pm b/lib/Class/MOP/Class.pm index 7b90488..a2867c1 100644 --- a/lib/Class/MOP/Class.pm +++ b/lib/Class/MOP/Class.pm @@ -1214,12 +1214,12 @@ Class::MOP::Class - Class Meta Object # add a method to Foo ... Foo->meta->add_method( 'bar' => sub {...} ) - # get a list of all the classes searched - # the method dispatcher in the correct order - Foo->meta->class_precedence_list() + # get a list of all the classes searched + # the method dispatcher in the correct order + Foo->meta->class_precedence_list() - # remove a method from Foo - Foo->meta->remove_method('bar'); + # remove a method from Foo + Foo->meta->remove_method('bar'); # or use this to actually create classes ...