Update Changes.
[p5sagit/p5-mst-13.2.git] / README.hpux
index 47d1afc..e850441 100644 (file)
@@ -124,7 +124,7 @@ If these dependent libraries are not listed at shared library creation
 time, you will get fatal "Unresolved symbol" errors at run time when the
 library is loaded.
 
-You may create a shared library that referers to another library, which
+You may create a shared library that refers to another library, which
 may be either an archive library or a shared library.  If this second
 library is a shared library, this is called a "dependent library".  The
 dependent library's name is recorded in the main shared library, but it
@@ -243,22 +243,22 @@ fix is currently available.
 
 =head2 perl -P and //
 
-In HP-UX perl is compiled with flags that will cause problems if the
+In HP-UX Perl is compiled with flags that will cause problems if the
 -P flag of Perl (preprocess Perl code with the C preprocessor before
 perl sees it) is used.  The problem is that C<//>, being a C++-style
 until-end-of-line comment, will disappear along with the remainder
 of the line.  This means that common Perl constructs like
 
-       s/foo//;
+    s/foo//;
 
 will turn into illegal code
 
-       s/foo
+    s/foo
 
-The workaround is to use some other quoting characters than /,
-like for example !
+The workaround is to use some other quoting separator than C<"/">,
+like for example C<"!">:
 
-       s!foo!!;
+    s!foo!!;
 
 =head1 AUTHOR