@@ -1130,7 +1130,7 @@ end program demo
1130
1130
1131
1131
#### Description
1132
1132
1133
- Returns a new string_type instance which holds the lowercase version of the
1133
+ Returns a new string_type instance which holds the lowercase version of the
1134
1134
character sequence hold by the input string.
1135
1135
1136
1136
#### Syntax
@@ -1176,7 +1176,7 @@ end program demo
1176
1176
1177
1177
#### Description
1178
1178
1179
- Returns a new string_type instance which holds the uppercase version of the
1179
+ Returns a new string_type instance which holds the uppercase version of the
1180
1180
character sequence hold by the input string.
1181
1181
1182
1182
#### Syntax
@@ -1222,12 +1222,12 @@ end program demo
1222
1222
1223
1223
#### Description
1224
1224
1225
- Returns a new string_type instance which holds the titlecase version
1226
- of the character sequence hold by the input string.
1227
- Title case: First character of every word in the sentence is converted to
1228
- uppercase and the rest of the characters are converted to lowercase.
1229
- A word is a contiguous sequence of character(s) which consists of alphabetical
1230
- character(s) and numeral(s) only and doesn't exclude any alphabetical character
1225
+ Returns a new string_type instance which holds the titlecase version
1226
+ of the character sequence hold by the input string.
1227
+ Title case: First character of every word in the sentence is converted to
1228
+ uppercase and the rest of the characters are converted to lowercase.
1229
+ A word is a contiguous sequence of character(s) which consists of alphabetical
1230
+ character(s) and numeral(s) only and doesn't exclude any alphabetical character
1231
1231
or numeral present next to either of its 2 ends.
1232
1232
1233
1233
#### Syntax
@@ -1272,10 +1272,10 @@ end program demo_to_title
1272
1272
1273
1273
#### Description
1274
1274
1275
- Returns a new string_type instance which holds the sentencecase
1276
- version of the character sequence hold by the input string.
1277
- Sentencecase version: The first alphabetical character of the input character sequence
1278
- is transformed to uppercase unless it follows a numeral and the rest of the
1275
+ Returns a new string_type instance which holds the sentencecase
1276
+ version of the character sequence hold by the input string.
1277
+ Sentencecase version: The first alphabetical character of the input character sequence
1278
+ is transformed to uppercase unless it follows a numeral and the rest of the
1279
1279
characters in the sequence are transformed to lowercase.
1280
1280
1281
1281
#### Syntax
@@ -1320,7 +1320,7 @@ end program demo_to_sentence
1320
1320
1321
1321
#### Description
1322
1322
1323
- Returns a new string_type instance which holds the reversed version of the
1323
+ Returns a new string_type instance which holds the reversed version of the
1324
1324
character sequence hold by the input string.
1325
1325
1326
1326
#### Syntax
@@ -1350,7 +1350,7 @@ program demo
1350
1350
use stdlib_string_type
1351
1351
implicit none
1352
1352
type(string_type) :: string, reverse_string
1353
-
1353
+
1354
1354
string = "Reverse This String"
1355
1355
! string <-- "Reverse This String"
1356
1356
@@ -1979,8 +1979,8 @@ end program demo
1979
1979
1980
1980
#### Description
1981
1981
1982
- Moves the allocation from ` from ` to ` to ` , consequently deallocating ` from ` in this process.
1983
- If ` from ` is not allocated before execution, ` to ` gets deallocated by the process.
1982
+ Moves the allocation from ` from ` to ` to ` , consequently deallocating ` from ` in this process.
1983
+ If ` from ` is not allocated before execution, ` to ` gets deallocated by the process.
1984
1984
An unallocated ` string_type ` instance is equivalent to an empty string.
1985
1985
1986
1986
#### Syntax
0 commit comments