File tree 2 files changed +6
-4
lines changed
2 files changed +6
-4
lines changed Original file line number Diff line number Diff line change @@ -1136,7 +1136,9 @@ end program demo
1136
1136
1137
1137
#### Description
1138
1138
1139
- Returns a new string_type instance which holds the titlecase version of the character sequence hold by the input string.
1139
+ Returns a new string_type instance which holds the titlecase (or capitalized) version of the character sequence hold by the input string.
1140
+ Capitalized version: The first alphabetical character of the input character sequence is transformed to uppercase unless it
1141
+ follows a numeral and the rest of the characters in the sequence are transformed to lowercase.
1140
1142
1141
1143
#### Syntax
1142
1144
Original file line number Diff line number Diff line change @@ -79,15 +79,15 @@ module stdlib_ascii
79
79
module procedure :: to_upper
80
80
end interface to_upper
81
81
82
- ! > Returns a new character sequence which is the titled
82
+ ! > Returns a new character sequence which is the title case
83
83
! > version of the input character sequence
84
84
! > This method is pure and returns a character sequence
85
85
interface to_title
86
86
module procedure :: to_title
87
87
end interface to_title
88
88
89
- ! > Returns a new character sequence which is the reversed
90
- ! > version of the input charater sequence
89
+ ! > Returns a new character sequence which is reverse of
90
+ ! > the input charater sequence
91
91
! > This method is pure and returns a character sequence
92
92
interface reverse
93
93
module procedure :: reverse
You can’t perform that action at this time.
0 commit comments