From 32a3bc5875f1b8aea3cd79e4ed47bc838640b060 Mon Sep 17 00:00:00 2001 From: Stan Ulbrych <89152624+StanFromIreland@users.noreply.github.com> Date: Wed, 4 Jun 2025 12:27:28 +0100 Subject: [PATCH] Simplify sentance --- pod/perlpacktut.pod | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/pod/perlpacktut.pod b/pod/perlpacktut.pod index 0b8b22583353..8264b6fadaee 100644 --- a/pod/perlpacktut.pod +++ b/pod/perlpacktut.pod @@ -41,11 +41,10 @@ of these two functions. To see how (un)packing works, we'll start with a simple template code where the conversion is in low gear: between the contents of a byte -sequence and a string of hexadecimal digits. Let's use C, since -this is likely to remind you of a dump program, or some desperate last -message unfortunate programs are wont to throw at you before they expire -into the wild blue yonder. Assuming that the variable C<$mem> holds a -sequence of bytes that we'd like to inspect without assuming anything +sequence and a string of hexadecimal digits. Let's use C, +since this may remind you of a hex dump or a crash message emitted by +a program just before it fails. Assuming that the variable C<$mem> holds +a sequence of bytes that we'd like to inspect without assuming anything about its meaning, we can write my( $hex ) = unpack( 'H*', $mem );