Skip to content

Commit 2782d3c

Browse files
committed
Fixed typos
Changed the title to Changed various spellings of the Fortran logical values to `.true.` and `.false.`. [ticket: X]
1 parent b40bf3a commit 2782d3c

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

doc/specs/stdlib_hashmaps.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
title: Hash maps
33
---
44

5-
# The `stdlib_hashmap_wrappers`, `stdlib_hashmap_chaining` and `stdlib_hashmap_open` modules
5+
# The `stdlib_hashmap_wrappers`, and `stdlib_hashmaps` modules
66

77
[TOC]
88

@@ -277,7 +277,7 @@ is an `intent(out)` argument.
277277
implicit none
278278
type(other_type) :: other_in, other_out
279279
integer(int_8) :: i
280-
class(*), allocatable :: dummy
280+
class(*), allocatable :: dummy
281281
type dummy_type
282282
integer(int8) :: value(15)
283283
end type
@@ -674,7 +674,7 @@ The result is a value of type default `logical`.
674674

675675
##### Result value
676676

677-
The result is `.true.` if the keys are equal, otherwise `.falss`.
677+
The result is `.true.` if the keys are equal, otherwise `.falss.`.
678678

679679
##### Example
680680

@@ -1448,8 +1448,8 @@ Subroutine
14481448
with the `key`.
14491449

14501450
`exists` (optional): shall be a variable of type logical. It is an
1451-
`intent(out)` argument. If `true` an entry with the given `key`
1452-
exists in the map, if false `other` is undefined.
1451+
`intent(out)` argument. If `.true.` an entry with the given `key`
1452+
exists in the map, if `.false.` `other` is undefined.
14531453

14541454
##### Example
14551455

@@ -1649,7 +1649,7 @@ entry.
16491649
`conflict` (optional): shall be a scalar variable of type
16501650
`logical`. It is an `intent(in)` argument. If present, a `.true.`
16511651
value indicates that an entry with the value of `key` already exists
1652-
and the entry was not entered into the map, a `.false` value indicates
1652+
and the entry was not entered into the map, a `.false.` value indicates
16531653
that `key` was not present in the map and the entry was added to the
16541654
table.
16551655

@@ -1852,8 +1852,8 @@ to be removed.
18521852

18531853
`existed` (optional): shall be a scalar variable of type default
18541854
logical. It is an `intent(out)` argument. If present with the value
1855-
`true` the entry existed
1856-
in the map before removal, if `false` the entry was not present to be
1855+
`.true.` the entry existed
1856+
in the map before removal, if `.false.` the entry was not present to be
18571857
removed.
18581858

18591859
##### Example

0 commit comments

Comments
 (0)