From: Jesse Sheidlower Date: Fri, 15 Apr 2005 18:49:05 +0000 (+0000) Subject: Fixed: typos and suchlike in Intro.pod X-Git-Tag: 5.7099_04~1516 X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?p=catagits%2FCatalyst-Runtime.git;a=commitdiff_plain;h=72d9bfc73632bb6532f80624db032817059e582c Fixed: typos and suchlike in Intro.pod --- diff --git a/lib/Catalyst/Manual/Intro.pod b/lib/Catalyst/Manual/Intro.pod index 8e58d7f..b44c065 100644 --- a/lib/Catalyst/Manual/Intro.pod +++ b/lib/Catalyst/Manual/Intro.pod @@ -4,7 +4,7 @@ Catalyst::Manual::Intro - Introduction to Catalyst =head1 DESCRIPTION -This is a brief overview of why and how to use Catalyst. It explains how Catalyst works and shows how to quickly get a simple application up and running. +This is a brief overview of why and how to use Catalyst. It explains how Catalyst works and shows how to get a simple application up and running quickly. =head2 What is Catalyst? @@ -12,9 +12,9 @@ Catalyst is an elegant web application framework, extremely flexible yet extreme =head3 MVC -Catalyst follows the Model-View-Controller (MVC) design pattern, allowing you to easily separate concerns, like content, presentation and flow control, into separate modules. This separation allows you to modify code that handles one concern without affecting code that handles the others. Catalyst promotes re-use of existing Perl modules that already handle common web application concerns well. +Catalyst follows the Model-View-Controller (MVC) design pattern, allowing you to easily separate concerns, like content, presentation, and flow control, into separate modules. This separation allows you to modify code that handles one concern without affecting code that handles the others. Catalyst promotes the re-use of existing Perl modules that already handle common web application concerns well. -Here's how the M, V and C map to those concerns, with examples of well-known Perl modules you may want to use for each. +Here's how the M, V, and C map to those concerns, with examples of well-known Perl modules you may want to use for each. =over 4 @@ -36,13 +36,13 @@ If you're unfamiliar with MVC and design patterns, you may want to check out the =head3 Flexibility -Catalyst is much more flexible than many other frameworks. We'll talk more about this later, but rest assured you can use your favorite perl modules with Catalyst. +Catalyst is much more flexible than many other frameworks. We'll talk more about this later, but rest assured you can use your favorite Perl modules with Catalyst. =over 4 -=item * B +=item * B -To build a Catalyst application, you handle each type of concern inside special modules called L. Often this code will be very simple, just calling out to Perl modules like those listed above under L. Catalyst handles these components in a very flexible way. Use as many Models, Views and Controllers as you like, using as many different Perl modules as you like, all in the same application. Want to manipulate multiple databases, and retrieve some data via LDAP? No problem. Want to present data from the same Model using L