Skip to content

Commit aa7a6a5

Browse files
committed
some minor commenting changes
1 parent 5a67bbf commit aa7a6a5

File tree

2 files changed

+5
-4
lines changed

2 files changed

+5
-4
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
json-fortran
22
============
33

4-
A Fortran 2003/2008 JSON API
4+
A Fortran 2008 JSON API
55

66
Brief Description
77
---------------
88

9-
A mostly-complete API for reading and writing JSON files, written in modern Fortran. The code requires a Fortran compiler that supports various Fortran 2003 and Fortran 2008 features such as: allocatable strings, associate, newunit, generic, class, and abstract interface. I am using the Intel Fortran compiler 13.1.0 on Linux (the Mac and PC versions should also work fine). It also currently compiles under recent experimental 4.9 release of the gnu gfortran compiler. The source code is a single Fortran module file (json_module.f90).
9+
A mostly-complete API for reading and writing JSON files, written in modern Fortran. The code requires a Fortran compiler that supports various Fortran 2003 and Fortran 2008 features such as: allocatable strings, associate, newunit, generic, class, and abstract interface. It has been successfully compiled with the Intel Fortran compiler 13.1.0 and the recent experimental 4.9 release of the GNU gfortran compiler. The source code is a single Fortran module file (json_module.f90).
1010

1111
Reading a JSON file
1212
---------------
@@ -91,7 +91,7 @@ Writing a json file is slightly more complicated and involves the use of pointer
9191
Other Comments
9292
---------------
9393

94-
This code is a fork and extensive upgrade of the FSON code that can be found at: <https://github.com/josephalevin/fson>. It includes many features that the original code did not have, and fixes many of that code's bugs.
94+
This code is a fork and extensive upgrade of the Fortran 95 FSON code that can be found at: <https://github.com/josephalevin/fson>. It includes many features that the original code did not have, and fixes many of that code's bugs.
9595

9696
More About JSON
9797
------------

src/json_module.f90

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ module json_module
77
! json_module
88
!
99
! DESCRIPTION
10-
! JSON-FORTRAN: A Fortran 2003/2008 JSON (JavaScript Object Notation) API.
10+
! JSON-FORTRAN: A Fortran 2008 JSON (JavaScript Object Notation) API.
1111
!
1212
! NOTES
1313
! -Based on fson by Joseph A. Levin (see LICENSE below)
@@ -2917,6 +2917,7 @@ subroutine get_current_line_from_file(iunit,line)
29172917
!
29182918
! DESCRIPTION
29192919
! Rewind the file to the beginning of the current line, and return this line.
2920+
! The file is assumed to be opened.
29202921
!
29212922
! AUTHOR
29222923
! Jacob Williams

0 commit comments

Comments
 (0)