diff options
author | Jerry D. Hedden <jdhedden@cpan.org> | 2008-05-19 07:58:58 -0400 |
---|---|---|
committer | H.Merijn Brand <h.m.brand@xs4all.nl> | 2008-05-19 16:08:57 +0000 |
commit | d3c2e0214aa6f08f145e54242074c5a1e625600d (patch) | |
tree | 55d0e73b87d0c9d8734659f08c304ab1998ee1ff /pod/perlop.pod | |
parent | bcb8f0e81fd4f3ff4e9c5cf62b09223b964ff276 (diff) | |
download | perl-d3c2e0214aa6f08f145e54242074c5a1e625600d.tar.gz |
Fix typo in perlop.pod
From: "Jerry D. Hedden" <jdhedden@cpan.org>
Message-ID: <1ff86f510805190858v4a7f6e06k5f949ff31384137d@mail.gmail.com>
p4raw-id: //depot/perl@33870
Diffstat (limited to 'pod/perlop.pod')
-rw-r--r-- | pod/perlop.pod | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pod/perlop.pod b/pod/perlop.pod index 378a74c192..7b0b0d2294 100644 --- a/pod/perlop.pod +++ b/pod/perlop.pod @@ -835,7 +835,7 @@ the text of the exception: The C<???> operator also takes one argument, but it emits a warning instead of throwing an exception: - sub baz { ??? "Who are you? Wnat do you want?" } + sub baz { ??? "Who are you? What do you want?" } baz(); say "Why are you here?"; |