Skip to content

Commit 9f82abb

Browse files
committed
added dependency of modules in Makefile.manual, updated comments, fixed typo in README.md
1 parent fbde735 commit 9f82abb

File tree

3 files changed

+10
-5
lines changed

3 files changed

+10
-5
lines changed

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ To test your build, run the test suite after the build has finished with
138138
cmake --build build --target test
139139
```
140140

141-
Please report failing tests on our [issue tracker](https://github.com/fortran-lang/stdlib/issues/new/choose) including details on the compiler used, the operating system and platform architecture.
141+
Please report failing tests on our [issue tracker](https://github.com/fortran-lang/stdlib/issues/new/choose) including details of the compiler used, the operating system and platform architecture.
142142

143143
To install the project to the declared prefix run
144144

src/Makefile.manual

+1
Original file line numberDiff line numberDiff line change
@@ -109,3 +109,4 @@ stdlib_stats_var.o: \
109109
stdlib_stats_distribution_PRNG.o: \
110110
stdlib_kinds.o \
111111
stdlib_error.o
112+
stdlib_string_type.o: stdlib_ascii.o

src/stdlib_string_type.f90

+8-4
Original file line numberDiff line numberDiff line change
@@ -95,28 +95,32 @@ module stdlib_string_type
9595

9696
!> Convert the character sequence hold by the input string to lower case
9797
!>
98-
!> Elemental or pure ???? Does not return anything
98+
!> This method is Elemental and returns a new string_type instance which holds lowercase
99+
!> version of the character sequence hold by the input string
99100
interface to_lower
100101
module procedure :: to_lower_string
101102
end interface to_lower
102103

103104
!> Convert the character sequence hold by the input string to upper case
104105
!>
105-
!> Elemental or pure ???? Does not return anything
106+
!> This method is Elemental and returns a new string_type instance which holds uppercase
107+
!> version of the character sequence hold by the input string
106108
interface to_upper
107109
module procedure :: to_upper_string
108110
end interface to_upper
109111

110112
!> Convert the character sequence hold by the input string to title case
111113
!>
112-
!> Elemental or pure ???? Does not return anything
114+
!> This method is Elemental and returns a new string_type instance which holds titlecase
115+
!> version of the character sequence hold by the input string
113116
interface to_title
114117
module procedure :: to_title_string
115118
end interface to_title
116119

117120
!> Reverse the character sequence hold by the input string
118121
!>
119-
!> Elemental or pure ???? Does not return anything
122+
!> This method is Elemental and returns a new string_type instance which holds reversed
123+
!> sequence of the character sequence hold by the input string
120124
interface reverse
121125
module procedure :: reverse_string
122126
end interface reverse

0 commit comments

Comments
 (0)