On Sun, Apr 4, 2010 at 7:22 AM, Jari Aalto <jari.aalto@cante.net> wrote: > It can be made visually distict by alternative means. You do not need to > type monotonic "one space" around every word: > > close FH or die "can't close $path: $!"; # bad > > close FH or die "can't close $path: $!"; # better > I disagree with "bad", and I disagree with "better". Sorry. I, for one (perhaps literally), think this function( a, b, c ); $hash{ $x }; $array[ $i ]; is better than this function(a, b, c); $hash{$x}; $array[$i]; so I'm not shy about an extra space around tokens. But *two* extra spaces? Unless it's to align things vertically, then no, please, not in documentation. -- BradThread Previous | Thread Next