Skip to content

Commit b4745ea

Browse files
author
Vandenplas, Jeremie
committed
fix format logical
1 parent 8f0a986 commit b4745ea

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'(l)', ends_with("pattern", "ern") ! T
5-
print'(l)', 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'(l)', starts_with("pattern", "pat") ! T
5-
print'(l)', 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)