Skip to content

Commit 3e570e0

Browse files
committed
Update README.md
1 parent 67d3d66 commit 3e570e0

File tree

1 file changed

+14
-14
lines changed

1 file changed

+14
-14
lines changed

README.md

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,17 +6,18 @@ A Fortran 2008 JSON API
66
Brief Description
77
---------------
88

9-
A mostly-complete API for reading and writing JSON files, written in
10-
modern Fortran. The code requires a Fortran compiler that supports
9+
An easy-to-use API for reading and writing JSON files, written in
10+
modern Fortran. The source code is a single Fortran module file (json_module.f90).
11+
12+
Building the Library
13+
--------------------
14+
15+
The code requires a Fortran compiler that supports
1116
various Fortran 2003 and Fortran 2008 features such as: allocatable
1217
strings, associate, newunit, generic, class, and abstract interface.
1318
It has been successfully compiled with the Intel Fortran compiler
1419
13.1.0 (and greater) and the recent [4.9 release of the GNU gfortran
15-
compiler](http://gcc.gnu.org/wiki/GFortran/News#GCC4.9). The source
16-
code is a single Fortran module file (json_module.f90).
17-
18-
Building the Library
19-
--------------------
20+
compiler](http://gcc.gnu.org/wiki/GFortran/News#GCC4.9).
2021

2122
Currently three ways are provided to build the jsonfortran library
2223
(libjsonfortran).
@@ -138,18 +139,17 @@ of pointers. See the json_example.f90 file for more examples.
138139
end program example2
139140
```
140141

141-
Other Comments
142-
---------------
143-
144-
This code is a fork and extensive upgrade of the Fortran 95 [FSON](https://github.com/josephalevin/fson) code. It
145-
includes many features that the original code did not have, and fixes
146-
many of that code's bugs.
147-
148142
Documentation
149143
--------------
150144

151145
The API documentation can be found [here](http://jacobwilliams.github.io/json-fortran). The documentation can also be generated by processing the source files with [RoboDoc](http://rfsber.home.xs4all.nl/Robo/). Note that both the shell script and CMake will generate these files automatically in the documentation folder, assuming you have RoboDoc installed.
152146

147+
Other Comments
148+
---------------
149+
150+
This code is a fork and extensive upgrade of the Fortran 95 [FSON](https://github.com/josephalevin/fson) code. It
151+
includes many features that the original code did not have, and fixes many of that code's bugs.
152+
153153
More About JSON
154154
------------
155155
For more information about JSON, see: <http://www.json.org/>

0 commit comments

Comments
 (0)