Index: trunk/doc/misc/perlCodeConventions.tex
===================================================================
--- trunk/doc/misc/perlCodeConventions.tex	(revision 2359)
+++ trunk/doc/misc/perlCodeConventions.tex	(revision 2360)
@@ -1,3 +1,3 @@
-%%% $Id: perlCodeConventions.tex,v 1.11 2004-11-13 02:57:30 jhoblitt Exp $
+%%% $Id: perlCodeConventions.tex,v 1.12 2004-11-13 03:10:47 jhoblitt Exp $
 \documentclass[panstarrs]{panstarrs}
 
@@ -21,5 +21,5 @@
 \RevisionsStart
 % version     Date         Description
-01 & 2004/11/08 & Title Changed \\
+01 & 2004-11-08 & Title Changed \\
 \RevisionsEnd
 
@@ -795,5 +795,20 @@
 \subsection{Perl style for, foreach Statements}
 
-\begin{verbatim}
+A Perlish \code{for} or \code{foreach} statement (also known as an iterator)
+should have the folliwng form:
+
+\begin{verbatim}
+foreach my $item (@workingList) {
+    # do stuff with $item
+}
+\end{verbatim}
+
+The current working item should be interacted with through a declared lexical
+variable and  not via \code{$_}.
+
+\begin{verbatim}
+foreach (@workingList) {                # Avoid!
+    # do stuff with $_
+}
 \end{verbatim}
 
