Branch: refs/heads/blead Home: https://github.com/Perl/perl5 Commit: 382176cf63024b9c11ece9307d23ed983cf2aa48 https://github.com/Perl/perl5/commit/382176cf63024b9c11ece9307d23ed983cf2aa48 Author: Lukas Mai <lukasmai....@gmail.com> Date: 2024-08-05 (Mon, 05 Aug 2024)
Changed paths: M pod/perlfunc.pod Log Message: ----------- perlfunc/pack: indent verbatim paragraphs consistently Previously, there was a mix of 1-space, 4-space, 3-space, 7-space, and tab-based indentation. Most of perlfunc uses 4 spaces, so go with that. Also, align the second column in the "This code:" ... "gives this result:" table. To fit within the line length limit (and make podcheck.t happy), use slightly shorter sample strings. Commit: 2d764b4b4e3c698519987a7792d605166ab5bc52 https://github.com/Perl/perl5/commit/2d764b4b4e3c698519987a7792d605166ab5bc52 Author: Lukas Mai <lukasmai....@gmail.com> Date: 2024-08-05 (Mon, 05 Aug 2024) Changed paths: M pod/perlfunc.pod Log Message: ----------- perlfunc/pack: fix pack @ example - Fix the `@1A((@2A)@3A)` example to use single quotes, not double quotes (which would interpolate array variables). - Replace `pack L=>0x12345678` by the more obvious `pack("L", 0x12345678)` (we're not trying to obfuscate our example code (right?)). Fixes #22425. Compare: https://github.com/Perl/perl5/compare/079a9d4ad36e...2d764b4b4e3c To unsubscribe from these emails, change your notification settings at https://github.com/Perl/perl5/settings/notifications