Change 15177 by ams@lustre on 2002/03/11 15:41:08

           Subject: perlreftut update
           From: Mark-Jason Dominus <[EMAIL PROTECTED]>
           Date: Mon, 11 Mar 2002 11:36:27 -0500
           Message-Id: <[EMAIL PROTECTED]>

Affected files ...

.... //depot/perl/pod/perlreftut.pod#6 edit

Differences ...

==== //depot/perl/pod/perlreftut.pod#6 (text) ====
Index: perl/pod/perlreftut.pod
--- perl/pod/perlreftut.pod.~1~ Mon Mar 11 08:45:06 2002
+++ perl/pod/perlreftut.pod     Mon Mar 11 08:45:06 2002
@@ -65,14 +65,14 @@
 
 A reference is a scalar value that I<refers to> an entire array or an
 entire hash (or to just about anything else).  Names are one kind of
-reference that you're already familiar with.  Think of the President:
-a messy, inconvenient bag of blood and bones.  But to talk about him,
-or to represent him in a computer program, all you need is the easy,
-convenient scalar string "Bill Clinton".
+reference that you're already familiar with.  Think of the President
+of the United States: a messy, inconvenient bag of blood and bones.
+But to talk about him, or to represent him in a computer program, all
+you need is the easy, convenient scalar string "George Bush".
 
 References in Perl are like names for arrays and hashes.  They're
 Perl's private, internal names, so you can be sure they're
-unambiguous.  Unlike "Bill Clinton", a reference only refers to one
+unambiguous.  Unlike "George Bush", a reference only refers to one
 thing, and you always know what it refers to.  If you have a reference
 to an array, you can recover the entire array from it.  If you have a
 reference to a hash, you can recover the entire hash.  But the
End of Patch.

Reply via email to