Fix a bug in the description of endianness. Reported in
authorVadim Konovalov <vkonovalov@lucent.com>
Mon, 20 Sep 1999 09:43:49 +0000 (13:43 +0400)
committerJarkko Hietaniemi <jhi@iki.fi>
Mon, 20 Sep 1999 07:33:32 +0000 (07:33 +0000)
From: "Konovalov, Vadim" <vkonovalov@lucent.com>
To: perl5-porters@perl.org
Subject: BUG: perldoc -f pack
Message-ID: <402099F49BEED211999700805FC7359F20D3F5@ru0028exch01.spb.lucent.com>

p4raw-id: //depot/cfgperl@4202

pod/perlfunc.pod

index 995a671..9968ee7 100644 (file)
@@ -2869,7 +2869,7 @@ not support long longs.)
 The integer formats C<"s">, C<"S">, C<"i">, C<"I">, C<"l">, and C<"L">
 are inherently non-portable between processors and operating systems
 because they obey the native byteorder and endianness.  For example a
-4-byte integer 0x87654321 (2271560481 decimal) be ordered natively
+4-byte integer 0x12345678 (305419896 decimal) be ordered natively
 (arranged in and handled by the CPU registers) into bytes as
  
        0x12 0x34 0x56 0x78     # little-endian
@@ -2885,7 +2885,7 @@ the classic "Gulliver's Travels" (via the paper "On Holy Wars and a
 Plea for Peace" by Danny Cohen, USC/ISI IEN 137, April 1, 1980) and
 the egg-eating habits of the Lilliputians.
  
-Some systems may even have weird byte orders such as
+Some systems may have even weirder byte orders such as
  
        0x56 0x78 0x12 0x34
        0x34 0x12 0x78 0x56