Skip to content

Commit 37f1d6c

Browse files
Update src/stdlib_ascii.f90
Co-authored-by: Ian Giestas Pauli <iangiestaspauli@gmail.com>
1 parent a996ec5 commit 37f1d6c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stdlib_ascii.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,7 +153,7 @@ pure logical function is_lower(c)
153153
character(len=1), intent(in) :: c !! The character to test.
154154
integer :: ic
155155
ic = iachar(c)
156-
is_lower = (ic >= iachar('a')) .and. (ic <= iachar('z'))
156+
is_lower = ic >= iachar('a') .and. ic <= iachar('z')
157157
end function
158158

159159
!> Checks whether `c` is an uppercase ASCII letter (A .. Z).

0 commit comments

Comments
 (0)