aboutsummaryrefslogtreecommitdiffstats
path: root/old
diff options
context:
space:
mode:
authordandv <dandv@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-07-26 15:08:42 +0000
committerdandv <dandv@03d0b0b2-0e1a-0410-a411-fdb2f4bd65d7>2008-07-26 15:08:42 +0000
commit996236fb86507b84f8a8279fe006dd4c7212e001 (patch)
tree9edb10507280dc789ac182e2d603a1e3430a9f64 /old
parent7f6be00a1966e9ac806984438923fc0f25a07ba9 (diff)
downloadreaction-996236fb86507b84f8a8279fe006dd4c7212e001.tar.gz
reaction-996236fb86507b84f8a8279fe006dd4c7212e001.zip
Minor grammar corrections
Diffstat (limited to 'old')
-rw-r--r--old/Manual.pod2
-rw-r--r--old/Manual/Example.pod2
-rw-r--r--old/Manual/FAQ.pod6
-rw-r--r--old/Manual/Intro.pod2
4 files changed, 6 insertions, 6 deletions
diff --git a/old/Manual.pod b/old/Manual.pod
index ab366cc..671665f 100644
--- a/old/Manual.pod
+++ b/old/Manual.pod
@@ -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
diff --git a/old/Manual/Example.pod b/old/Manual/Example.pod
index 02a55fe..11ebeb7 100644
--- a/old/Manual/Example.pod
+++ b/old/Manual/Example.pod
@@ -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:
---
diff --git a/old/Manual/FAQ.pod b/old/Manual/FAQ.pod
index 96f20fd..57e65e0 100644
--- a/old/Manual/FAQ.pod
+++ b/old/Manual/FAQ.pod
@@ -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?
diff --git a/old/Manual/Intro.pod b/old/Manual/Intro.pod
index 73d3846..b4560b3 100644
--- a/old/Manual/Intro.pod
+++ b/old/Manual/Intro.pod
@@ -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.