summaryrefslogtreecommitdiff
path: root/pod/perlootut.pod
diff options
context:
space:
mode:
authorDave Rolsky <autarch@urth.org>2011-09-08 22:04:12 -0500
committerDave Rolsky <autarch@urth.org>2011-09-08 22:04:12 -0500
commit995ab4efd425780d4da6bbf80927a8c47ce308f6 (patch)
treeabf7dba0aaca4a62632fa240eef817c1579f9024 /pod/perlootut.pod
parent00c07ea69e51df3ed3717164a70b029c28c72e19 (diff)
downloadperl-995ab4efd425780d4da6bbf80927a8c47ce308f6.tar.gz
some small fixes to make porting/podcheck.t happy
Diffstat (limited to 'pod/perlootut.pod')
-rw-r--r--pod/perlootut.pod20
1 files changed, 10 insertions, 10 deletions
diff --git a/pod/perlootut.pod b/pod/perlootut.pod
index 83d6629ad1..8c2cfcce8c 100644
--- a/pod/perlootut.pod
+++ b/pod/perlootut.pod
@@ -387,50 +387,50 @@ the right fit for your problem:
=over 4
-=item
+=item *
The system being designed is large, or is likely to become large.
-=item
+=item *
The data can be aggregated into obvious structures, especially if
there's a large amount of data in each aggregate.
-=item
+=item *
The various types of data aggregate form a natural hierarchy that
facilitates the use of inheritance and polymorphism.
-=item
+=item *
You have a piece of data on which many different operations are
applied.
-=item
+=item *
You need to perform the same general operations on related types of
data, but with slight variations depending on the specific type of data
the operations are applied to.
-=item
+=item *
It's likely you'll have to add new data types later.
-=item
+=item *
The typical interactions between pieces of data are best represented by
operators.
-=item
+=item *
The implementation of individual components of the system is likely to
change over time.
-=item
+=item *
The system design is already object-oriented.
-=item
+=item *
Large numbers of other programmers will be using your code modules.