Skip to content

Commit 3bb004d

Browse files
authored
Merge pull request #609 from milancurcic/consistent-spec-titles
Consistent spec titles
2 parents 9f1aa24 + 7b74720 commit 3bb004d

12 files changed

+16
-16
lines changed

doc/specs/index.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@ This is and index/directory of the specifications (specs) for each new module/fe
1515
- [ascii](./stdlib_ascii.html) - Procedures for handling ASCII characters
1616
- [bitsets](./stdlib_bitsets.html) - Bitset data types and procedures
1717
- [error](./stdlib_error.html) - Catching and handling errors
18-
- [hash\_procedures](./stdlib_hash_procedures.html) - Hashing integer
18+
- [hash](./stdlib_hash_procedures.html) - Hashing integer
1919
vectors or character strings
20-
- [IO](./stdlib_io.html) - Input/output helper & convenience
20+
- [io](./stdlib_io.html) - Input/output helper & convenience
2121
- [kinds](./stdlib_kinds.html) - Kind parameters
2222
- [linalg](./stdlib_linalg.html) - Linear Algebra
2323
- [logger](./stdlib_logger.html) - Runtime logging system
@@ -30,8 +30,8 @@ This is and index/directory of the specifications (specs) for each new module/fe
3030
- [stats_distributions_uniform](./stdlib_stats_distribution_uniform.html) - Uniform Probability Distribution
3131
- [stats_distributions_normal](./stdlib_stats_distribution_normal.html) - Normal Probability Distribution
3232
- [string\_type](./stdlib_string_type.html) - Basic string support
33-
- [strings](./stdlib_strings.html) - String handling and manipulation routines
3433
- [stringlist_type](./stdlib_stringlist_type.html) - 1-Dimensional list of strings
34+
- [strings](./stdlib_strings.html) - String handling and manipulation routines
3535
- [version](./stdlib_version.html) - Version information
3636

3737
## Released/Stable Features & Modules

doc/specs/stdlib_ascii.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: ASCII
2+
title: ascii
33
---
44

55
# The `stdlib_ascii` module
@@ -212,4 +212,4 @@ program demo_reverse
212212
implicit none
213213
print'(a)', reverse("Hello, World!") ! returns "!dlroW ,olleH"
214214
end program demo_reverse
215-
```
215+
```

doc/specs/stdlib_bitsets.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Bitsets
2+
title: bitsets
33
---
44

55
# The `stdlib_bitsets` module

doc/specs/stdlib_hash_procedures.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Hash procedures
2+
title: hash
33
---
44

55
# The `stdlib_hash_32bit` and `stdlib_hash_64bit` modules

doc/specs/stdlib_io.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: IO
2+
title: io
33
---
44

55
# IO

doc/specs/stdlib_random.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: stats_random
2+
title: random
33
---
44

55
# Statistical Distributions -- Pseudorandom Number Generator Module

doc/specs/stdlib_selection.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Selection Procedures
2+
title: selection
33
---
44

55
# The `stdlib_selection` module

doc/specs/stdlib_sorting.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Sorting Procedures
2+
title: sorting
33
---
44

55
# The `stdlib_sorting` module

doc/specs/stdlib_string_type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: string type
2+
title: string_type
33
---
44

55
# The `stdlib_string_type` module

doc/specs/stdlib_stringlist_type.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: stringlist type
2+
title: stringlist_type
33
---
44

55
# `stdlib_stringlist_type` module (1-D list of strings)

doc/specs/stdlib_strings.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: string handling
2+
title: strings
33
---
44

55
# The `stdlib_strings` module
@@ -606,4 +606,4 @@ program demo_to_string
606606
!! 1 wrong demonstrations(`[*]` from `to_string`)
607607
608608
end program demo_to_string
609-
```
609+
```

doc/specs/stdlib_version.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
---
2-
title: Version information
2+
title: version
33
---
44

55
# The `stdlib_version` module

0 commit comments

Comments
 (0)