Skip to content

Commit a98a1d7

Browse files
committed
Corrected typos and ensured no trailing whitespace.
Corrected misspellings detected by the build system's spellchecker. Also used emacs M-X deletete-trailing-whitespace. [ticket: X]
1 parent 2741106 commit a98a1d7

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

src/stdlib_hashmap_chaining.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -679,7 +679,7 @@ module subroutine rehash_chaining_map( map, hasher )
679679
end subroutine rehash_chaining_map
680680

681681

682-
module subroutine remove_chaining_entry(map, key, existed)
682+
module subroutine remove_chaining_entry(map, key, existed)
683683
!! Remove the entry, if any, that has the key
684684
!! Arguments:
685685
!! map - the table from which the entry is to be removed

src/stdlib_hashmap_wrappers.f90

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11
!! The module STDLIB_HASHMAP_WRAPPERS provides wrappers for vqrious
22
!! entities used by the hash map procedures. These include wrappers for the
3-
!! `key` and òther`data, and hashing procedures to operate on entities of
3+
!! `key` and `other` data, and hashing procedures to operate on entities of
44
!! the `key_type`.
55

66
module stdlib_hashmap_wrappers
77

88
use, intrinsic :: iso_fortran_env, only : &
99
character_storage_size
10-
10+
1111
use stdlib_hash_32bit
1212

1313
use stdlib_kinds, only : &
@@ -235,7 +235,7 @@ subroutine get_other( other, value )
235235
class(*), allocatable, intent(out) :: value
236236

237237
allocate(value, source=other % value)
238-
238+
239239
end subroutine get_other
240240

241241

src/stdlib_hashmaps.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
!! The module, STDLIB_HASH_MAPS, implements two hash maps:
22
!! CHAINING_HASH_MAP_TYPE, a separate chaining hash map; and OPEN_HASH_MAP_TYPE,
3-
!! an open addresing hash map using linear addressing. The two hash maps are
3+
!! an open addressing hash map using linear addressing. The two hash maps are
44
!! implementations of the abstract type, HASH_MAP_TYPE.
55

66
module stdlib_hashmaps
@@ -298,7 +298,7 @@ end function total_depth
298298
type, extends(hashmap_type) :: chaining_hashmap_type
299299
!! Version: Experimental
300300
!!
301-
!! Type inplementing the `chaining_hashmap_type` types
301+
!! Type implementing the `chaining_hashmap_type` types
302302
private
303303
type(chaining_map_entry_pool), pointer :: cache => null()
304304
!! Pool of allocated chaining_map_entry_type objects

0 commit comments

Comments
 (0)