Skip to content

Commit 27fb27a

Browse files
committed
doc string corrections
1 parent 2a771a2 commit 27fb27a

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
@@ -5687,10 +5687,11 @@ end function wrap_json_valid_path
56875687
!>
56885688
! Returns the [[json_value]] pointer given the path string.
56895689
!
5690-
! It uses either of two methods:
5690+
! It uses one of three methods:
56915691
!
56925692
! * The original JSON-Fortran defaults
56935693
! * [RFC 6901](https://tools.ietf.org/html/rfc6901)
5694+
! * [JSONPath](http://goessner.net/articles/JsonPath/) "bracket-notation"
56945695

56955696
subroutine json_get_by_path(json, me, path, p, found)
56965697

@@ -5710,7 +5711,6 @@ subroutine json_get_by_path(json, me, path, p, found)
57105711

57115712
if (.not. json%exception_thrown) then
57125713

5713-
! note: it can only be 1 or 2 (3 not currently enabled)
57145714
select case (json%path_mode)
57155715
case(1_IK)
57165716
call json%json_get_by_path_default(me, path, p, found)

0 commit comments

Comments
 (0)