Skip to content

Commit 692d13b

Browse files
committed
stay within 80 characters line length
1 parent 2dd965d commit 692d13b

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

src/stdlib_string_type.f90

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,13 +12,15 @@
1212
!>
1313
!> The specification of this module is available [here](../page/specs/stdlib_string_type.html).
1414
module stdlib_string_type
15-
use stdlib_ascii, only: to_lower_ => to_lower, to_upper_ => to_upper, to_title_ => to_title, reverse_ => reverse
15+
use stdlib_ascii, only: to_lower_ => to_lower, to_upper_ => to_upper, &
16+
to_title_ => to_title, reverse_ => reverse
1617

1718
implicit none
1819
private
1920

2021
public :: string_type
21-
public :: len, len_trim, trim, index, scan, verify, repeat, adjustr, adjustl, to_lower, to_upper, to_title, reverse
22+
public :: len, len_trim, trim, index, scan, verify, repeat, adjustr, &
23+
adjustl, to_lower, to_upper, to_title, reverse
2224
public :: lgt, lge, llt, lle, char, ichar, iachar
2325
public :: assignment(=)
2426
public :: operator(>), operator(>=), operator(<), operator(<=)

0 commit comments

Comments
 (0)