Skip to content

Commit 30ea5af

Browse files
committed
added better comments to the stdlib_ascii.f90
1 parent 1546ef3 commit 30ea5af

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

src/stdlib_ascii.f90

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -65,29 +65,29 @@ module stdlib_ascii
6565
character(len=*), public, parameter :: whitespace = " "//TAB//VT//CR//LF//FF !! ASCII _whitespace
6666

6767

68-
!> Convert character variable to lower case
69-
!>
68+
!> Returns a new character sequence which is the lower case
69+
!> version of the input character sequence
7070
!> This method is pure and returns a character sequence
7171
interface to_lower
7272
module procedure :: to_lower
7373
end interface to_lower
7474

75-
!> Convert character variable to upper case
76-
!>
75+
!> Returns a new character sequence which is the upper case
76+
!> version of the input character sequence
7777
!> This method is pure and returns a character sequence
7878
interface to_upper
7979
module procedure :: to_upper
8080
end interface to_upper
8181

82-
!> Convert character variable to title case
83-
!>
82+
!> Returns a new character sequence which is the titled
83+
!> version of the input character sequence
8484
!> This method is pure and returns a character sequence
8585
interface to_title
8686
module procedure :: to_title
8787
end interface to_title
8888

89-
!> Reverse the character order in the input character variable
90-
!>
89+
!> Returns a new character sequence which is the reversed
90+
!> version of the input charater sequence
9191
!> This method is pure and returns a character sequence
9292
interface reverse
9393
module procedure :: reverse

0 commit comments

Comments
 (0)