Skip to content

Commit 18ef4c6

Browse files
committed
some updates to ford docs
1 parent 7819919 commit 18ef4c6

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

json-fortran.md

+3-2
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,9 @@ coloured_edges: true
2929
extra_filetypes: .inc !
3030
print_creation_date: true
3131
creation_date: %Y-%m-%d %H:%M %z
32-
extra_mods: iso_fortran_env:https://gcc.gnu.org/onlinedocs/gfortran/ISO_005fFORTRAN_005fENV.html
33-
ifcore:https://software.intel.com/en-us/fortran-compiler-developer-guide-and-reference-tracebackqq
32+
extra_mods: iso_fortran_env:https://fortranwiki.org/fortran/show/iso_fortran_env
33+
ifcore:https://www.intel.com/content/www/us/en/docs/fortran-compiler/developer-guide-reference/2024-0/tracebackqq.html
34+
ieee_arithmetic:https://fortranwiki.org/fortran/show/ieee_arithmetic
3435
md_extensions: markdown.extensions.toc
3536
markdown.extensions.smarty
3637
---

src/json_string_utilities.F90

+4-4
Original file line numberDiff line numberDiff line change
@@ -484,9 +484,9 @@ subroutine unescape_string(str, error_message)
484484

485485
implicit none
486486

487-
character(kind=CK,len=:),allocatable,intent(inout) :: str !! in: string as stored
488-
!! in a [[json_value]].
489-
!! out: decoded string.
487+
character(kind=CK,len=:),allocatable,intent(inout) :: str !! * in: string as stored
488+
!! in a [[json_value]].
489+
!! * out: decoded string.
490490
character(kind=CK,len=:),allocatable,intent(out) :: error_message !! will be allocated if
491491
!! there was an error
492492

@@ -617,7 +617,7 @@ end subroutine unescape_string
617617

618618
!*****************************************************************************************
619619
!> author: Jacob Williams
620-
! date:6/14/2014
620+
! date: 6/14/2014
621621
!
622622
! Returns true if the string is a valid 4-digit hex string.
623623
!

0 commit comments

Comments
 (0)