@@ -53,7 +53,7 @@ The module `stdlib_hashmaps` defines the API for a parent datatype,
5353` hashmap_type ` and two extensions of that hash map type:
5454` chaining_hashmap_type ` and ` open_hashmap_type ` .
5555
56- The ` hashmap_type ` defines the Application Programers
56+ The ` hashmap_type ` defines the Application Programmers
5757Interface (API) for the procedures used by its two extensions. It
5858explicitly defines five non-overridable procedures. It also defines
5959the interfaces for eleven deferred procedures. It does not define the
@@ -113,7 +113,7 @@ keys and their associated data.
113113
114114The constant ` int_hash ` is used to define the integer kind value for
115115the returned hash codes and variables used to access them. It
116- currently is imported from ` stdlib_hash_32bit ` where it haas the
116+ currently is imported from ` stdlib_hash_32bit ` where it has the
117117value, ` int32 ` .
118118
119119### The ` stdlib_hashmap_wrappers ` ' module's derived types
@@ -229,7 +229,7 @@ is an `intent(out)` argument.
229229``` fortran
230230 program demo_copy_key
231231 use stdlib_hashmap_wrappers, only: &
232- copy_key, operator(==), equal_keys, key_type
232+ copy_key, operator(==), key_type
233233 use iso_fortran_env, only: int8
234234 implicit none
235235 integer(int8) :: i, value(15)
@@ -1043,7 +1043,7 @@ seven private components:
10431043
10441044* ` nbits ` - the number of bits used to address the slots;
10451045
1046- * ` num_entries ` - the humber of entries in the map;
1046+ * ` num_entries ` - the number of entries in the map;
10471047
10481048* ` num_free ` - the number of entries in the free list of removed
10491049 entries;
@@ -1609,7 +1609,7 @@ entry in the map.
16091609
16101610##### Syntax
16111611
1612- ` result = call map % [[hashmap_type(type):key_test(bound)]]( key, present )`
1612+ ` call map % [[hashmap_type(type):key_test(bound)]]( key, present ) `
16131613
16141614##### Class
16151615
0 commit comments