@@ -53,7 +53,7 @@ The module `stdlib_hashmaps` defines the API for a parent datatype,
53
53
` hashmap_type ` and two extensions of that hash map type:
54
54
` chaining_hashmap_type ` and ` open_hashmap_type ` .
55
55
56
- The ` hashmap_type ` defines the Application Programers
56
+ The ` hashmap_type ` defines the Application Programmers
57
57
Interface (API) for the procedures used by its two extensions. It
58
58
explicitly defines five non-overridable procedures. It also defines
59
59
the interfaces for eleven deferred procedures. It does not define the
@@ -113,7 +113,7 @@ keys and their associated data.
113
113
114
114
The constant ` int_hash ` is used to define the integer kind value for
115
115
the 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
117
117
value, ` int32 ` .
118
118
119
119
### The ` stdlib_hashmap_wrappers ` ' module's derived types
@@ -229,7 +229,7 @@ is an `intent(out)` argument.
229
229
``` fortran
230
230
program demo_copy_key
231
231
use stdlib_hashmap_wrappers, only: &
232
- copy_key, operator(==), equal_keys, key_type
232
+ copy_key, operator(==), key_type
233
233
use iso_fortran_env, only: int8
234
234
implicit none
235
235
integer(int8) :: i, value(15)
@@ -1043,7 +1043,7 @@ seven private components:
1043
1043
1044
1044
* ` nbits ` - the number of bits used to address the slots;
1045
1045
1046
- * ` num_entries ` - the humber of entries in the map;
1046
+ * ` num_entries ` - the number of entries in the map;
1047
1047
1048
1048
* ` num_free ` - the number of entries in the free list of removed
1049
1049
entries;
@@ -1609,7 +1609,7 @@ entry in the map.
1609
1609
1610
1610
##### Syntax
1611
1611
1612
- ` result = call map % [[hashmap_type(type):key_test(bound)]]( key, present )`
1612
+ ` call map % [[hashmap_type(type):key_test(bound)]]( key, present ) `
1613
1613
1614
1614
##### Class
1615
1615
0 commit comments