Bug 16735: Fix POD format for Koha::Library::Groups methods
authorJonathan Druart <jonathan.druart@bugs.koha-community.org>
Fri, 9 Feb 2018 20:00:44 +0000 (17:00 -0300)
committerJonathan Druart <jonathan.druart@bugs.koha-community.org>
Mon, 12 Feb 2018 18:41:35 +0000 (15:41 -0300)
Signed-off-by: Jonathan Druart <jonathan.druart@bugs.koha-community.org>
Koha/Library/Groups.pm

index d3cb72a..1a8b8fb 100644 (file)
@@ -35,7 +35,9 @@ Koha::Library::Groups - Koha Library::Group object set class
 
 =head2 Class Methods
 
-=head3 my @root_groups = $self->get_root_group()
+=head3 get_root_groups
+
+my @root_groups = $self->get_root_group()
 
 =cut
 
@@ -45,7 +47,9 @@ sub get_root_groups {
     return $self->search( { parent_id => undef }, { order_by => 'title' } );
 }
 
-=head3 my @search_groups = $self->get_search_groups({[interface => 'staff' || 'opac']}))
+=head3 get_search_groups
+
+my @search_groups = $self->get_search_groups({[interface => 'staff' || 'opac']}))
 
 Returns search groups for the specified interface.
 Defaults to OPAC if no interface is specified.