summaryrefslogtreecommitdiff
path: root/pod/perldata.pod
diff options
context:
space:
mode:
Diffstat (limited to 'pod/perldata.pod')
-rw-r--r--pod/perldata.pod4
1 files changed, 2 insertions, 2 deletions
diff --git a/pod/perldata.pod b/pod/perldata.pod
index 9b3798ffb1..90ac535e1c 100644
--- a/pod/perldata.pod
+++ b/pod/perldata.pod
@@ -122,7 +122,7 @@ declare a scalar variable to be of type "string", or of type "number", or
type "filehandle", or anything else. Perl is a contextually polymorphic
language whose scalars can be strings, numbers, or references (which
includes objects). While strings and numbers are considered the pretty
-much same thing for nearly all purposes, but references are strongly-typed
+much same thing for nearly all purposes, references are strongly-typed
uncastable pointers with built-in reference-counting and destructor
invocation.
@@ -315,7 +315,7 @@ first blank line--see the Merry Christmas example below.) The terminating
string must appear by itself (unquoted and with no surrounding
whitespace) on the terminating line.
- print <<EOF; # same as above
+ print <<EOF;
The price is $Price.
EOF