Remove Mac OS classic instructions from perlrun
[p5sagit/p5-mst-13.2.git] / pod / perlopentut.pod
index 31fe6f2..9139ebc 100644 (file)
@@ -170,7 +170,7 @@ based on its command line arguments without relying on the shell. (Similar
 to the C<system(@LIST)> notation.) This is safer and faster than executing
 a single argument pipe-command, but does not allow special shell
 constructs. (It is also not supported on Microsoft Windows, Mac OS Classic
-or RiscOS.)
+or RISC OS.)
 
 Here's an example of C<open '-|'>, which prints a random Unix
 fortune cookie as uppercase:
@@ -779,7 +779,7 @@ the doctor ordered.  There's no filehandle interface, but
 it's still easy to get the contents of a document:
 
     use LWP::Simple;
-    $doc = get('http://www.linpro.no/lwp/');
+    $doc = get('http://www.cpan.org/');
 
 =head2 Binary Files