Description: re-order POD sections to fix POD ERRORS
 Something between GitHub and MetaCPAN seems to have gone wrong.
Origin: vendor
Bug: https://github.com/plu/Pithub/issues/209
Forwarded: https://github.com/plu/Pithub/issues/209
Author: gregor herrmann <gregoa@debian.org>
Last-Update: 2018-03-17

--- a/lib/Pithub/Base.pm
+++ b/lib/Pithub/Base.pm
@@ -546,6 +546,12 @@
 
 =item *
 
+=for Pod::Coverage has_jsonp_callback
+
+B<has_jsonp_callback>: check if the jsonp_callback attribute is set
+
+=back
+
 =head2 per_page
 
 Controls how many items are fetched per API call, aka "page".  See
@@ -575,6 +581,12 @@
 
 =item *
 
+=for Pod::Coverage has_per_page
+
+B<has_per_page>: check if the per_page attribute is set
+
+=back
+
 =head2 prepare_request
 
 This is a CodeRef and can be used to modify the L<HTTP::Request>
@@ -630,6 +642,8 @@
 
     print $result->content->{body_html};
 
+=for Pod::Coverage has_prepare_request
+
 =head2 repo
 
 This can be set as a default repo to use for API calls that require
@@ -653,6 +667,12 @@
 
 =item *
 
+=for Pod::Coverage has_repo
+
+B<has_repo>: check if the repo attribute is set
+
+=back
+
 =head2 token
 
 If the OAuth token is set, L<Pithub> will sent it via an HTTP header
@@ -686,6 +706,19 @@
 
 =item *
 
+=for Pod::Coverage has_user
+
+B<has_user>: check if the user attribute is set
+
+=back
+
+It might make sense to use this together with the repo attribute:
+
+    my $c = Pithub::Repos::Commits->new( user => 'plu', repo => 'Pithub' );
+    my $result = $c->list;
+    my $result = $c->list_comments;
+    my $result = $c->get('6b6127383666e8ecb41ec20a669e4f0552772363');
+
 =head2 utf8
 
 This can set utf8 flag.
@@ -844,39 +877,6 @@
 
 Query the rate limit for the current object and authentication method.
 
-=for Pod::Coverage has_jsonp_callback
-
-B<has_jsonp_callback>: check if the jsonp_callback attribute is set
-
-=back
-
-=for Pod::Coverage has_per_page
-
-B<has_per_page>: check if the per_page attribute is set
-
-=back
-
-=for Pod::Coverage has_prepare_request
-
-=for Pod::Coverage has_repo
-
-B<has_repo>: check if the repo attribute is set
-
-=back
-
-=for Pod::Coverage has_user
-
-B<has_user>: check if the user attribute is set
-
-=back
-
-It might make sense to use this together with the repo attribute:
-
-    my $c = Pithub::Repos::Commits->new( user => 'plu', repo => 'Pithub' );
-    my $result = $c->list;
-    my $result = $c->list_comments;
-    my $result = $c->get('6b6127383666e8ecb41ec20a669e4f0552772363');
-
 =head1 AUTHOR
 
 Johannes Plunien <plu@cpan.org>
