Skip to content

Commit 421833a

Browse files
committed
fixed some typos
1 parent c9a13e2 commit 421833a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/json_value_module.F90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1159,7 +1159,7 @@ recursive subroutine json_value_destroy(json,me,destroy_next)
11591159
me%n_children = me%n_children - 1
11601160
call json_value_destroy(json,p,.false.)
11611161
else
1162-
call json%throw_exception('Error in json_value_destroy: '&
1162+
call json%throw_exception('Error in json_value_destroy: '//&
11631163
'Malformed JSON linked list')
11641164
exit
11651165
end if
@@ -2564,7 +2564,7 @@ subroutine json_value_get_by_name_chars(json, me, name, p)
25642564
p => me%children !start with first one
25652565
do i=1, n_children
25662566
if (.not. associated(p)) then
2567-
call json%throw_exception('Error in json_value_get_by_name_chars: '&
2567+
call json%throw_exception('Error in json_value_get_by_name_chars: '//&
25682568
'Malformed JSON linked list')
25692569
return
25702570
end if

0 commit comments

Comments
 (0)