Skip to content

Commit bf2674e

Browse files
keep a space before opening bracket of while loop construct
Co-authored-by: Milan Curcic <caomaco@gmail.com>
1 parent 88f38dd commit bf2674e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stdlib_strings.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -720,7 +720,7 @@ elemental function count_char_char(string, pattern, consider_overlapping) result
720720

721721
s_i = 1
722722
p_i = 1
723-
do while(s_i <= length_string)
723+
do while (s_i <= length_string)
724724
if (string(s_i:s_i) == pattern(p_i:p_i)) then
725725
if (p_i == length_pattern) then
726726
res = res + 1

0 commit comments

Comments
 (0)