Skip to content

Commit f63585d

Browse files
authored
Merge pull request #813 from jvdp1/fix_example_starts_with
Fix example starts with
2 parents 0a00ced + b4745ea commit f63585d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

example/strings/example_ends_with.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
program example_ends_with
22
use stdlib_strings, only: ends_with
33
implicit none
4-
print'(a)', ends_with("pattern", "ern") ! T
5-
print'(a)', ends_with("pattern", "pat") ! F
4+
print'(l1)', ends_with("pattern", "ern") ! T
5+
print'(l1)', ends_with("pattern", "pat") ! F
66
end program example_ends_with
Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
program example_starts_with
22
use stdlib_strings, only: starts_with
33
implicit none
4-
print'(a)', starts_with("pattern", "pat") ! T
5-
print'(a)', starts_with("pattern", "ern") ! F
4+
print'(l1)', starts_with("pattern", "pat") ! T
5+
print'(l1)', starts_with("pattern", "ern") ! F
66
end program example_starts_with

0 commit comments

Comments
 (0)