Skip to content

Commit ccb9abb

Browse files
committed
s/an map/a map/
1 parent 5f71f6a commit ccb9abb

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

doc/Type/Map.pod

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,10 +6,10 @@
66
77
class Map does Associative is Iterable { }
88
9-
An Map is an immutable mapping from string keys to values of arbitrary
9+
A Map is an immutable mapping from string keys to values of arbitrary
1010
types. It serves as a base class for L<Hash>, which is mutable.
1111
12-
In list context an Map behaves as a list of L<Pair> objects.
12+
In list context a Map behaves as a list of L<Pair> objects.
1313
1414
Note that the order in which keys, values and pairs are retrieved is
1515
generally arbitrary, but the C<keys>, C<values> and C<pairs> methods
@@ -81,7 +81,7 @@ operator:
8181
8282
my $value = $map{$key};
8383
84-
To check whether a given key is stored in an Map, modify the access
84+
To check whether a given key is stored in a Map, modify the access
8585
with the C<:exists> adverb:
8686
8787
if %h{$key}:exists {

0 commit comments

Comments
 (0)