Fix various doc typoes.
[catagits/Catalyst-Runtime.git] / lib / Catalyst / Base.pm
1 package Catalyst::Base;
2
3 use base qw/Catalyst::Controller/;
4 use Moose;
5 no Moose;
6
7 1;
8
9 __END__
10
11 =head1 NAME
12
13 Catalyst::Base - Deprecated base class
14
15 =head1 DESCRIPTION
16
17 This used to be the base class for Catalyst Controllers. It
18 remains here for compatibility reasons.
19
20 =head1 SEE ALSO
21
22 L<Catalyst>, L<Catalyst::Controller>.
23
24 =head1 AUTHORS
25
26 Catalyst Contributors, see Catalyst.pm
27
28 =head1 COPYRIGHT
29
30 This program is free software, you can redistribute it and/or modify it under
31 the same terms as Perl itself.
32
33 =cut