Skip to content

Commit 75c6d8f

Browse files
author
Carl Burkert
committed
Fix string_type concatenation
1 parent e4273ab commit 75c6d8f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/stdlib_string_type.fypp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1082,7 +1082,7 @@ contains
10821082
type(string_type), intent(in) :: rhs
10831083
type(string_type) :: string
10841084

1085-
string%raw = maybe(rhs) // maybe(lhs)
1085+
string%raw = maybe(lhs) // maybe(rhs)
10861086

10871087
end function concat_string_string
10881088

0 commit comments

Comments
 (0)