Skip to content

Commit 986e81c

Browse files
committed
no trailing blanks
1 parent 12da563 commit 986e81c

File tree

1 file changed

+16
-16
lines changed

1 file changed

+16
-16
lines changed

doc/specs/stdlib_string_type.md

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -1130,7 +1130,7 @@ end program demo
11301130

11311131
#### Description
11321132

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
11341134
character sequence hold by the input string.
11351135

11361136
#### Syntax
@@ -1176,7 +1176,7 @@ end program demo
11761176

11771177
#### Description
11781178

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
11801180
character sequence hold by the input string.
11811181

11821182
#### Syntax
@@ -1222,12 +1222,12 @@ end program demo
12221222

12231223
#### Description
12241224

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
12311231
or numeral present next to either of its 2 ends.
12321232

12331233
#### Syntax
@@ -1272,10 +1272,10 @@ end program demo_to_title
12721272

12731273
#### Description
12741274

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
12791279
characters in the sequence are transformed to lowercase.
12801280

12811281
#### Syntax
@@ -1320,7 +1320,7 @@ end program demo_to_sentence
13201320

13211321
#### Description
13221322

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
13241324
character sequence hold by the input string.
13251325

13261326
#### Syntax
@@ -1350,7 +1350,7 @@ program demo
13501350
use stdlib_string_type
13511351
implicit none
13521352
type(string_type) :: string, reverse_string
1353-
1353+
13541354
string = "Reverse This String"
13551355
! string <-- "Reverse This String"
13561356
@@ -1979,8 +1979,8 @@ end program demo
19791979

19801980
#### Description
19811981

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.
19841984
An unallocated `string_type` instance is equivalent to an empty string.
19851985

19861986
#### Syntax

0 commit comments

Comments
 (0)