summaryrefslogtreecommitdiff
path: root/pod/perlfaq7.pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod/perlfaq7.pod')
-rw-r--r--pod/perlfaq7.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perlfaq7.pod b/pod/perlfaq7.pod
index 54380e62a4..c272c91e31 100644
--- a/pod/perlfaq7.pod
+++ b/pod/perlfaq7.pod
@@ -532,7 +532,7 @@ issue is the same here:
my($foo) = <FILE>; # WRONG
my $foo = <FILE>; # right
-=head2 How do I redefine a built-in function, operator, or method?
+=head2 How do I redefine a builtin function, operator, or method?
Why do you want to do that? :-)
@@ -576,7 +576,7 @@ how best to do this, so he left it out, even though it's been on the
wish list since perl1.
Here's a simple example of a switch based on pattern matching. We'll
-do a multi-way conditional based on the type of reference stored in
+do a multiway conditional based on the type of reference stored in
$whatchamacallit:
SWITCH: