You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@spamassassin.apache.org by bu...@bugzilla.spamassassin.org on 2004/09/07 06:13:29 UTC

[Bug 3756] Misplaced close-angle-brackets in PoD doc

http://bugzilla.spamassassin.org/show_bug.cgi?id=3756





------- Additional Comments From schaefer@zanshin.com  2004-09-06 21:13 -------
(Adding description that got lost in the original submission.)

This applies specifically to Mail/SpamAssassin/Plugin.pm but may also affect
other documentation.

In several places the PoD uses something similar to

    C<$permsgstatus->get_message()>

This is parsed as "C<$permsgstatus->" and "get_message()>" which is not what was
intended.

The doc should instead use

    C<$permsgstatus-E<gt>get_message()>



------- You are receiving this mail because: -------
You are the assignee for the bug, or are watching the assignee.

Re: [Bug 3756] Misplaced close-angle-brackets in PoD doc

Posted by Matt Sergeant <ms...@messagelabs.com>.
On 7 Sep 2004, at 05:13, bugzilla-daemon@bugzilla.spamassassin.org 
wrote:

> ------- Additional Comments From schaefer@zanshin.com  2004-09-06 
> 21:13 -------
> (Adding description that got lost in the original submission.)
>
> This applies specifically to Mail/SpamAssassin/Plugin.pm but may also 
> affect
> other documentation.
>
> In several places the PoD uses something similar to
>
>     C<$permsgstatus->get_message()>
>
> This is parsed as "C<$permsgstatus->" and "get_message()>" which is 
> not what was
> intended.
>
> The doc should instead use
>
>     C<$permsgstatus-E<gt>get_message()>

Ewww, please no!

POD has a perfectly clean way to deal with this rather than using E<>:

   C<< $permsgstatus->get_message() >>

You need whitespace between the double-brackets and the text. I prefer 
this because it's MUCH more readable when scanning through text outside 
of a POD converter. If you need to have the bit-shift operator in the 
code you can use triple brackets.

Matt.


______________________________________________________________________
This email has been scanned by the MessageLabs Email Security System.
For more information please visit http://www.messagelabs.com/email 
______________________________________________________________________