-
Notifications
You must be signed in to change notification settings - Fork 576
perlpacktut: Remove some jargon #23251
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: blead
Are you sure you want to change the base?
Conversation
pod/perlpacktut.pod
Outdated
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 | ||
this is likely to remind you of a dump program, or some terse panic |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
While I think your phrasing is an improvement, I have to wonder why unpack
is likely to remind me of a dump program or a panic message.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This could be improved by swapping the order of the sentence, like "Since this is likely to remind you..., let's use unpack."
9b51d83
to
070b513
Compare
I delved further into this, and think the result of the latest push is much better. |
print unpack( 'A*', $mem), "\n" | ||
|
||
A MAN A PLAN A CANAL PANAMA |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is no different to:
print $mem, "\n";
I don't see how it adds anything
Fixes #22697
That a native English speaker could be confused by this is prima facie evidence that the wording should be improved. It's al right to be clever, but not at the expense of clarity.