a few doc typos
Gurusamy Sarathy [Sun, 17 Jan 1999 08:42:04 +0000 (08:42 +0000)]
p4raw-id: //depot/perl@2619

lib/utf8.pm
pod/perlfunc.pod
pod/perlre.pod

index 35a478d..beb4568 100644 (file)
@@ -53,7 +53,7 @@ larger than 255.  Presuming you use a Unicode editor to edit your
 program, these will typically occur directly within the literal strings
 as UTF-8 characters, but you can also specify a particular character
 with an extension of the C<\x> notation.  UTF-8 characters are
-specified by putting the hexidecimal code within curlies after the
+specified by putting the hexadecimal code within curlies after the
 C<\x>.  For instance, a Unicode smiley face is C<\x{263A}>.  A
 character in the Latin-1 range (128..255) should be written C<\x{ab}>
 rather than C<\xab>, since the former will turn into a two-byte UTF-8
index 702d8bf..0f8a060 100644 (file)
@@ -2343,7 +2343,8 @@ C<'w+'>, C<'a'>, and C<'a+'>.
 
 If the filename begins with C<'|'>, the filename is interpreted as a
 command to which output is to be piped, and if the filename ends with a
-C<'|'>, the filename is interpreted See L<perlipc/"Using open() for IPC">
+C<'|'>, the filename is interpreted as a command which pipes output to
+us.  See L<perlipc/"Using open() for IPC">
 for more examples of this.  (You are not allowed to C<open()> to a command
 that pipes both in I<and> out, but see L<IPC::Open2>, L<IPC::Open3>,
 and L<perlipc/"Bidirectional Communication"> for alternatives.)
index d3d4500..1df6ba3 100644 (file)
@@ -169,7 +169,8 @@ In addition, Perl defines the following:
     \D Match a non-digit character
     \pP        Match P, named property.  Use \p{Prop} for longer names.
     \PP        Match non-P
-    \X Match eXtended Unicode "combining character sequence", \pM\pm*
+    \X Match eXtended Unicode "combining character sequence",
+        equivalent to C<(?:\PM\pM*)>
     \C Match a single C char (octet) even under utf8.
 
 A C<\w> matches a single alphanumeric character, not a whole