summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authorDoug Bell <madcityzen@gmail.com>2014-11-11 15:19:45 -0600
committerFather Chrysostomos <sprout@cpan.org>2014-11-11 14:47:06 -0800
commitdf2b00e84681191d85888e385f6472b051ad2555 (patch)
tree9912c2a578ddbee64a9a510982b27a3a5e50f617 /lib
parent86e082c9212ebc75a0e2d64a4445e2ed0d45cd2f (diff)
downloadperl-df2b00e84681191d85888e385f6472b051ad2555.tar.gz
rename anonymous list -> array in docs
Diffstat (limited to 'lib')
-rw-r--r--lib/B/Deparse.t2
-rw-r--r--lib/Unicode/UCD.pm4
2 files changed, 3 insertions, 3 deletions
diff --git a/lib/B/Deparse.t b/lib/B/Deparse.t
index d05e3afe1f..75255cc338 100644
--- a/lib/B/Deparse.t
+++ b/lib/B/Deparse.t
@@ -1559,7 +1559,7 @@ state($s3, $s4);
#@z = ($s7, undef, $s8);
($s7, undef, $s8) = (1, 2, 3);
####
-# anon lists with padrange
+# anon arrays with padrange
my($a, $b);
my $c = [$a, $b];
my $d = {$a, $b};
diff --git a/lib/Unicode/UCD.pm b/lib/Unicode/UCD.pm
index 8632a3fa54..d7e1c86111 100644
--- a/lib/Unicode/UCD.pm
+++ b/lib/Unicode/UCD.pm
@@ -612,7 +612,7 @@ See also L</Blocks versus Scripts>.
If supplied with an argument that can't be a code point, C<charblock()> tries to
do the opposite and interpret the argument as an old-style block name. On an
ASCII platform, the return value is a I<range set> with one range: an
-anonymous list with a single element that consists of another anonymous list
+anonymous array with a single element that consists of another anonymous array
whose first element is the first code point in the block, and whose second
element is the final code point in the block. On an EBCDIC
platform, the first two Unicode blocks are not contiguous. Their range sets
@@ -720,7 +720,7 @@ that it doesn't have scripts, this function returns C<"Unknown">.
If supplied with an argument that can't be a code point, charscript() tries
to do the opposite and interpret the argument as a script name. The
-return value is a I<range set>: an anonymous list of lists that contain
+return value is a I<range set>: an anonymous array of arrays that contain
I<start-of-range>, I<end-of-range> code point pairs. You can test whether a
code point is in a range set using the L</charinrange()> function.
(To be precise, each I<range set> contains a third array element,