Skip to content

Commit 32a1d39

Browse files
committed
Merge branch 'hash_maps' of github.com:wclodius2/stdlib into hash_maps
2 parents f6c2b26 + 16b2227 commit 32a1d39

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/specs/stdlib_hashmaps.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1287,7 +1287,7 @@ Procedures to modify the content of a map:
12871287

12881288
Procedures to report the content of a map:
12891289

1290-
* `map 5 get_other_data( key, other, exists )` - Returns the other data
1290+
* `map % get_other_data( key, other, exists )` - Returns the other data
12911291
associated with the `key`;
12921292

12931293
* `map % key_test( key, present)` - Returns a flag indicating whether
@@ -1980,7 +1980,7 @@ not exist and nothing was done.
19801980
call map % init( fnv_1_hasher, slots_bits=10 )
19811981
allocate( dummy, source='A value` )
19821982
call set( key, [ 5_int8, 7_int8, 4_int8, 13_int8 ] )
1983-
Call set( other, dummy )
1983+
call set( other, dummy )
19841984
call map % map_entry( key, other )
19851985
deallocate( dummy )
19861986
allocate( dummy, source='Another value` )

src/stdlib_hashmap_wrappers.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
!! The module STDLIB_HASHMAP_WRAPPERS provides wrappers for vqrious
1+
!! The module STDLIB_HASHMAP_WRAPPERS provides wrappers for various
22
!! entities used by the hash map procedures. These include wrappers for the
33
!! `key` and `other` data, and hashing procedures to operate on entities of
44
!! the `key_type`.

0 commit comments

Comments
 (0)