File tree 1 file changed +5
-12
lines changed
1 file changed +5
-12
lines changed Original file line number Diff line number Diff line change @@ -34,9 +34,7 @@ Converts input character variable to all lowercase.
34
34
35
35
#### Syntax
36
36
37
- ``` f90
38
- res = [stdlib_asciii(module):to_lower(function)]](string)
39
- ```
37
+ ` res = [[stdlib_asciii(module):to_lower(function)]] (string) `
40
38
41
39
#### Class
42
40
@@ -72,9 +70,7 @@ Converts input character variable to all uppercase.
72
70
73
71
#### Syntax
74
72
75
- ``` fortran
76
- res = [[stdlib_ascii(module):to_upper(function)]](string)
77
- ```
73
+ ` res = [[stdlib_ascii(module):to_upper(function)]] (string) `
78
74
79
75
#### Class
80
76
@@ -112,9 +108,7 @@ All following characters will become lowercase.
112
108
113
109
#### Syntax
114
110
115
- ```
116
- res = [[stdlib_ascii(module):to_title(interface)]](string)
117
- ```
111
+ ` res = [[stdlib_ascii(module):to_title(interface)]] (string) `
118
112
119
113
#### Class
120
114
@@ -152,9 +146,7 @@ Reverses the order of all characters in the input character type.
152
146
153
147
#### Syntax
154
148
155
- ``` f90
156
- res = [[stdlib_ascii(module):reverse(function)]](string)
157
- ```
149
+ ` res = [[stdlib_ascii(module):reverse(function)]] (string) `
158
150
159
151
#### Class
160
152
@@ -176,3 +168,4 @@ program demo_reverse
176
168
implicit none
177
169
print'(a)', reverse("Hello, World!") ! returns "!dlroW ,olleH"
178
170
end program demo_reverse
171
+ ```
You can’t perform that action at this time.
0 commit comments