File tree 2 files changed +6
-2
lines changed
2 files changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -34,7 +34,7 @@ Converts input character variable to all lowercase.
34
34
35
35
#### Syntax
36
36
37
- ` res = [[stdlib_asciii (module):to_lower(function)]] (string) `
37
+ ` res = [[stdlib_ascii (module):to_lower(function)]] (string) `
38
38
39
39
#### Class
40
40
@@ -108,7 +108,7 @@ The rest of the character sequence is transformed to lowercase.
108
108
109
109
#### Syntax
110
110
111
- ` res = [[stdlib_ascii(module):to_title(interface )]] (string) `
111
+ ` res = [[stdlib_ascii(module):to_title(function )]] (string) `
112
112
113
113
#### Class
114
114
Original file line number Diff line number Diff line change @@ -211,6 +211,7 @@ pure function char_to_upper(c) result(t)
211
211
end function char_to_upper
212
212
213
213
! > Convert character variable to lower case
214
+ ! > ([Specification](../page/specs/stdlib_ascii.html#to_lower))
214
215
! >
215
216
! > Version: experimental
216
217
pure function to_lower (string ) result(lower_string)
@@ -225,6 +226,7 @@ pure function to_lower(string) result(lower_string)
225
226
end function to_lower
226
227
227
228
! > Convert character variable to upper case
229
+ ! > ([Specification](../page/specs/stdlib_ascii.html#to_upper))
228
230
! >
229
231
! > Version: experimental
230
232
pure function to_upper (string ) result(upper_string)
@@ -239,6 +241,7 @@ pure function to_upper(string) result(upper_string)
239
241
end function to_upper
240
242
241
243
! > Convert character variable to title case
244
+ ! > ([Specification](../page/specs/stdlib_ascii.html#to_title))
242
245
! >
243
246
! > Version: experimental
244
247
pure function to_title (string ) result(title_string)
@@ -264,6 +267,7 @@ pure function to_title(string) result(title_string)
264
267
end function to_title
265
268
266
269
! > Reverse the character order in the input character variable
270
+ ! > ([Specification](../page/specs/stdlib_ascii.html#reverse))
267
271
! >
268
272
! > Version: experimental
269
273
pure function reverse (string ) result(reverse_string)
You can’t perform that action at this time.
0 commit comments