summaryrefslogtreecommitdiff
path: root/pod/perlreftut.pod
diff options
context:
space:
mode:
authorMark Jason Dominus <mjd@plover.com>2009-03-19 21:50:27 +0100
committerYves Orton <demerphq@gmail.com>2009-03-19 21:50:27 +0100
commitde9b652d389bb078ea964ac7c12b5680f8290779 (patch)
tree04eba0ee9ca40fab2edaaa8bde400b88961d9fcb /pod/perlreftut.pod
parent53102b2bf304e114abfc50b0b9efcd8bbcab5c41 (diff)
downloadperl-de9b652d389bb078ea964ac7c12b5680f8290779.tar.gz
pod/perlreftut.pod: keep example in tune with the times
Diffstat (limited to 'pod/perlreftut.pod')
-rw-r--r--pod/perlreftut.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlreftut.pod b/pod/perlreftut.pod
index 82ad80e3a6..7898b6db53 100644
--- a/pod/perlreftut.pod
+++ b/pod/perlreftut.pod
@@ -67,11 +67,11 @@ entire hash (or to just about anything else). Names are one kind of
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".
+you need is the easy, convenient scalar string "Barack Obama".
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 "George Bush", a reference only refers to one
+unambiguous. Unlike "Barack Obama", 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