cpan-authors / IPC-Run

https://metacpan.org/pod/IPC::Run
Other
21 stars 38 forks source link

Fix POD formatting #165

Closed jwilk closed 2 years ago

jwilk commented 2 years ago

As per perlpod, "Doubled angle brackets (<< and >>) may be used if and only if there is whitespace right after the opening delimiter and whitespace right before the closing delimiter!"

Before:

$ pod2text lib/IPC/Run.pm | grep -o 'Call .* in this case'
Call "<$h-"kill_kill>> in this case

After:

$ pod2text lib/IPC/Run.pm | grep -o 'Call .* in this case'
Call "$h->kill_kill" in this case
jwilk commented 2 years ago

Oops, only now I noticed that my branch was dozens of commits behind upstream. Sorry for needlessly complicating git history. :-(