Skip to content

Commit 6e9574b

Browse files
authored
Apply suggestions from code review
1 parent 546fece commit 6e9574b

File tree

2 files changed

+6
-2
lines changed

2 files changed

+6
-2
lines changed

doc/specs/stdlib_ascii.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ Converts input character variable to all lowercase.
3434

3535
#### Syntax
3636

37-
`res = [[stdlib_asciii(module):to_lower(function)]] (string)`
37+
`res = [[stdlib_ascii(module):to_lower(function)]] (string)`
3838

3939
#### Class
4040

@@ -108,7 +108,7 @@ The rest of the character sequence is transformed to lowercase.
108108

109109
#### Syntax
110110

111-
`res = [[stdlib_ascii(module):to_title(interface)]] (string)`
111+
`res = [[stdlib_ascii(module):to_title(function)]] (string)`
112112

113113
#### Class
114114

src/stdlib_ascii.f90

+4
Original file line numberDiff line numberDiff line change
@@ -211,6 +211,7 @@ pure function char_to_upper(c) result(t)
211211
end function char_to_upper
212212

213213
!> Convert character variable to lower case
214+
!> ([Specification](../page/specs/stdlib_ascii.html#to_lower))
214215
!>
215216
!> Version: experimental
216217
pure function to_lower(string) result(lower_string)
@@ -225,6 +226,7 @@ pure function to_lower(string) result(lower_string)
225226
end function to_lower
226227

227228
!> Convert character variable to upper case
229+
!> ([Specification](../page/specs/stdlib_ascii.html#to_upper))
228230
!>
229231
!> Version: experimental
230232
pure function to_upper(string) result(upper_string)
@@ -239,6 +241,7 @@ pure function to_upper(string) result(upper_string)
239241
end function to_upper
240242

241243
!> Convert character variable to title case
244+
!> ([Specification](../page/specs/stdlib_ascii.html#to_title))
242245
!>
243246
!> Version: experimental
244247
pure function to_title(string) result(title_string)
@@ -264,6 +267,7 @@ pure function to_title(string) result(title_string)
264267
end function to_title
265268

266269
!> Reverse the character order in the input character variable
270+
!> ([Specification](../page/specs/stdlib_ascii.html#reverse))
267271
!>
268272
!> Version: experimental
269273
pure function reverse(string) result(reverse_string)

0 commit comments

Comments
 (0)