Skip to content

Commit 1091969

Browse files
committed
fix pod errors
1 parent 46a396d commit 1091969

File tree

9 files changed

+87
-8
lines changed

9 files changed

+87
-8
lines changed

lib/Slick.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -454,7 +454,7 @@ Inherited from L<Slick::EventHandler>.
454454
455455
=head1 See also
456456
457-
=over2
457+
=over 2
458458
459459
=item * L<Slick::Router>
460460

lib/Slick/Context.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -234,7 +234,7 @@ and a bunch of other helpers to make it easy to handle HTTP in L<Slick>.
234234
235235
Decodes the body of the L<Plack::Request> via the following:
236236
237-
=over2
237+
=over 2
238238
239239
=item * C<JSON> => L<JSON::Tiny>
240240

lib/Slick/DatabaseExecutor/MySQL.pm

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,3 +29,43 @@ sub BUILD {
2929
}
3030

3131
1;
32+
33+
=encoding utf8
34+
35+
=head1 NAME
36+
37+
Slick::DatabaseExecutor::MySQL
38+
39+
=head1 SYNOPSIS
40+
41+
A child class of L<Slick::DatabaseExecutor>, handles all interactions with MySQL, mostly just configuring the connection.
42+
43+
=head1 See also
44+
45+
=over 2
46+
47+
=item * L<Slick>
48+
49+
=item * L<Slick::RouteManager>
50+
51+
=item * L<Slick::Context>
52+
53+
=item * L<Slick::Database>
54+
55+
=item * L<Slick::DatabaseExecutor>
56+
57+
=item * L<Slick::DatabaseExecutor::Pg>
58+
59+
=item * L<Slick::EventHandler>
60+
61+
=item * L<Slick::Events>
62+
63+
=item * L<Slick::Methods>
64+
65+
=item * L<Slick::RouteMap>
66+
67+
=item * L<Slick::Util>
68+
69+
=back
70+
71+
=cut

lib/Slick/DatabaseExecutor/Pg.pm

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,43 @@ sub BUILD {
3030
}
3131

3232
1;
33+
34+
=encoding utf8
35+
36+
=head1 NAME
37+
38+
Slick::DatabaseExecutor::Pg
39+
40+
=head1 SYNOPSIS
41+
42+
A child class of L<Slick::DatabaseExecutor>, handles all interactions with PostgreSQL, mostly just configuring the connection.
43+
44+
=head1 See also
45+
46+
=over 2
47+
48+
=item * L<Slick>
49+
50+
=item * L<Slick::RouteManager>
51+
52+
=item * L<Slick::Context>
53+
54+
=item * L<Slick::Database>
55+
56+
=item * L<Slick::DatabaseExecutor>
57+
58+
=item * L<Slick::DatabaseExecutor::MySQL>
59+
60+
=item * L<Slick::EventHandler>
61+
62+
=item * L<Slick::Events>
63+
64+
=item * L<Slick::Methods>
65+
66+
=item * L<Slick::RouteMap>
67+
68+
=item * L<Slick::Util>
69+
70+
=back
71+
72+
=cut

lib/Slick/EventHandler.pm

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ sub on {
3939
=encoding utf8
4040
4141
=head1 NAME
42-
4342
Slick::EventHandler
4443
4544
=head1 SYNOPSIS
@@ -53,7 +52,7 @@ A L<Moo::Role> that allows the registering of events via a C<on> method.
5352
Registers a C<CodeRef> with a given event name. Only allows registering of events
5453
that exist within L<Slick::Events>.
5554
56-
=over2
55+
=over 2
5756
5857
=item * L<Slick::Context>
5958

lib/Slick/Route.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Dispatches a L<Slick> and a L<Slick::Context> against all local events and the c
7070
7171
=head1 See also
7272
73-
=over2
73+
=over 2
7474
7575
=item * L<Slick::Context>
7676

lib/Slick/RouteManager.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ Slick::RouteManager
7070
7171
A L<Moo::Role> that allows the managing of routes via a L<Slick::RouteMap> and HTTP methods.
7272
73-
=over2
73+
=over 2
7474
7575
=item * L<Slick>
7676

lib/Slick/RouteMap.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -167,7 +167,7 @@ Merges two given L<Slick::RouteMap>s. This is the primary mechanism behind L<Sli
167167
168168
=head1 See also
169169
170-
=over2
170+
=over 2
171171
172172
=item * L<Slick>
173173

lib/Slick/Router.pm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ See L<Slick::EventHandler> and L<Slick::RouteManager>.
4444
4545
=head1 See also
4646
47-
=over2
47+
=over 2
4848
4949
=item * L<Slick>
5050

0 commit comments

Comments
 (0)