Skip to content

Commit b358295

Browse files
committed
fixed some broken links in docstrings.
added a comment.
1 parent 06a12a3 commit b358295

File tree

2 files changed

+6
-5
lines changed

2 files changed

+6
-5
lines changed

src/json_file_module.F90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1190,7 +1190,7 @@ end subroutine wrap_json_file_get_string_vec
11901190
! date: 12/17/2016
11911191
!
11921192
! Get an (allocatable length) string vector from a JSON file.
1193-
! This is just a wrapper for [[json_get_alloc_string_vec_with_path]].
1193+
! This is just a wrapper for [[json_get_alloc_string_vec_by_path]].
11941194

11951195
subroutine json_file_get_alloc_string_vec(me, path, vec, ilen, found)
11961196

@@ -1212,7 +1212,7 @@ end subroutine json_file_get_alloc_string_vec
12121212
!*****************************************************************************************
12131213
!>
12141214
! Alternate version of [[json_file_get_alloc_string_vec]], where "path" is kind=CDK.
1215-
! This is just a wrapper for [[wrap_json_get_alloc_string_vec_with_path]].
1215+
! This is just a wrapper for [[wrap_json_get_alloc_string_vec_by_path]].
12161216

12171217
subroutine wrap_json_file_get_alloc_string_vec(me, path, vec, ilen, found)
12181218

src/json_value_module.F90

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -288,13 +288,13 @@ module json_value_module
288288
! thrown if the existing variable is not a scalar).
289289
!
290290
!### See also
291-
! * [[add_by_path]] - this one can be used to change
291+
! * [[json_core(type):add_by_path]] - this one can be used to change
292292
! arrays and objects to scalars if so desired.
293293
!
294294
!@note Unlike some routines, the `found` output is not optional,
295295
! so it doesn't present exceptions from being thrown.
296296
!
297-
!@note These have been mostly supplanted by the [[add_by_path]]
297+
!@note These have been mostly supplanted by the [[json_core(type):add_by_path]]
298298
! methods, which do a similar thing (and can be used for
299299
! scalars and vectors, etc.)
300300
generic,public :: update => MAYBEWRAP(json_update_logical),&
@@ -379,7 +379,7 @@ module json_value_module
379379
! (This will create a `null` variable)
380380
!
381381
!### See also
382-
! * [[add_by_path]]
382+
! * [[json_core(type):add_by_path]]
383383

384384
generic,public :: create => MAYBEWRAP(json_create_by_path)
385385
procedure :: MAYBEWRAP(json_create_by_path)
@@ -8579,6 +8579,7 @@ end subroutine parse_array
85798579
!### History
85808580
! * Jacob Williams : 6/16/2014 : Added hex validation.
85818581
! * Jacob Williams : 12/3/2015 : Fixed some bugs.
8582+
! * Jacob Williams : 8/23/2015 : `string` is now returned unescaped.
85828583

85838584
subroutine parse_string(json, unit, str, string)
85848585

0 commit comments

Comments
 (0)