Minor grammar corrections
dandv [Sat, 26 Jul 2008 15:08:42 +0000 (15:08 +0000)]
old/Manual.pod
old/Manual/Example.pod
old/Manual/FAQ.pod
old/Manual/Intro.pod

index ab366cc..671665f 100644 (file)
@@ -38,7 +38,7 @@ IRC: Join #reaction on irc.perl.org
 
 =head1 AUTHORS
 
-See L<Reaction::Class> for authors for authors.
+See L<Reaction::Class> for authors.
 
 =head1 LICENSE
 
index 02a55fe..11ebeb7 100644 (file)
@@ -268,7 +268,7 @@ create root/index:
 
 =head2 Running
 
-Now all that remains is to tell catalyst about the root and the model. Let
+Now all that remains is to tell Catalyst about the root and the model. Let
 test_reaction.yml look like this:
 
  ---
index 96f20fd..57e65e0 100644 (file)
@@ -7,7 +7,7 @@ Reaction::Manual::FAQ
 =head3 What is Reaction?
 
 Reaction is an MVCish framework that is designed with two goals in mind:
-"don't repeat yourself" and "components rule."
+"don't repeat yourself" and "components rule".
 
 =head3 How is it different from other MVC frameworks?
 
@@ -24,7 +24,7 @@ only part of the flexibility we have in mind.
 =head3 How is it different from Catalyst?
 
 Catalyst is MVC-based whereas Reaction splits the Model into 2 parts: The
-"Domain Model" and the "Interface Model." Web development is only a sample of
+"Domain Model" and the "Interface Model". Web development is only a sample of
 what Reaction can do - but it already comes bundled with the basic components
 that you would have to program in Catalyst. At the moment, Reaction runs on
 Catalyst for web development.
@@ -49,7 +49,7 @@ Roles, etc.
 A well defined model for the common operations involved in a particular mode
 of interaction with the domain. In other words, it's a layer around the Domain
 Model that provides interaction with it. One example would be an authorization
-procedure for different views of the same data, based on user's credentials.
+procedure for different views of the same data, based on the user's credentials.
 
 =head3 I'm lost! What does "Model" mean?
 
index 73d3846..b4560b3 100644 (file)
@@ -33,7 +33,7 @@ View:: classes, handed viewports.
 =head1 THE REACTION WAY
 
 The idea is you separate your domain model, which encapsulates the domain
-itself from your interface model, which is a model of how a particular app or
+itself, from your interface model, which is a model of how a particular app or
 class of apps interact with that domain and provides objects/methods to
 encapsulate the common operations it does.