Author: paultcochrane Date: Fri Sep 14 08:45:45 2007 New Revision: 21279 Modified: trunk/docs/pdds/pdd07_codingstd.pod
Log: [pdd] (pdd07) Added an example of splitting a long line before an operator. Modified: trunk/docs/pdds/pdd07_codingstd.pod ============================================================================== --- trunk/docs/pdds/pdd07_codingstd.pod (original) +++ trunk/docs/pdds/pdd07_codingstd.pod Fri Sep 14 08:45:45 2007 @@ -212,7 +212,11 @@ =item * When splitting a long line at a binary operator (other than comma), the split -should be I<before> the operator, so that the continued line looks like one. +should be I<before> the operator, so that the continued line looks like one, +e.g.: + + something_long_here = something_very_long + something_else_also_long + - something_which_also_could_be_long; =item *