|
2 | 2 | !> author: Jacob Williams
|
3 | 3 | ! license: BSD
|
4 | 4 | !
|
5 |
| -!# JSON-FORTRAN: |
| 5 | +!# JSON-Fortran: |
6 | 6 | ! A Fortran 2008 JSON (JavaScript Object Notation) API.
|
7 | 7 | !
|
8 | 8 | ! [TOC]
|
|
22 | 22 | ! The documentation given here assumes ```USE_UCS4``` **is not** defined.
|
23 | 23 | #endif
|
24 | 24 | !
|
25 |
| -!@warning ```CK``` and ```CDK``` are the json-fortran character kind and json-fortran default |
| 25 | +!@warning ```CK``` and ```CDK``` are the JSON-Fortran character kind and JSON-Fortran default |
26 | 26 | ! character kind respectively. Client code **MUST** ensure characters of ```kind=CK```
|
27 |
| -! are used for all character variables and strings passed to the json-fortran |
| 27 | +! are used for all character variables and strings passed to the JSON-Fortran |
28 | 28 | ! library *EXCEPT* for file names which must be of ```'DEFAULT'``` character kind,
|
29 | 29 | ! provided here as ```CDK```. In particular, any variable that is a: json path, string
|
30 |
| -! value or object name passed to the json-fortran library **MUST** be of type ```CK```. |
| 30 | +! value or object name passed to the JSON-Fortran library **MUST** be of type ```CK```. |
31 | 31 | !
|
32 | 32 | !@note Most string literal constants of default kind are fine to pass as arguments to
|
33 | 33 | ! JSON-Fortran procedures since they have been overloaded to accept ```intent(in)```
|
|
37 | 37 | !
|
38 | 38 | !## License
|
39 | 39 | !
|
40 |
| -! **json-fortran License:** |
| 40 | +! **JSON-Fortran License:** |
41 | 41 | !
|
42 | 42 | ! JSON-Fortran: A Fortran 2008 JSON API
|
43 | 43 | !
|
@@ -151,7 +151,7 @@ module json_module
|
151 | 151 |
|
152 | 152 | !*********************************************************
|
153 | 153 | !>
|
154 |
| - ! Default character kind used by json-fortran. |
| 154 | + ! Default character kind used by JSON-Fortran. |
155 | 155 | ! If ISO 10646 (UCS4) support is available, use that,
|
156 | 156 | ! otherwise, gracefully fall back on 'DEFAULT' characters.
|
157 | 157 | ! Currently only gfortran >= 4.9.2 will correctly support
|
@@ -1550,7 +1550,7 @@ end subroutine wrap_json_file_get_string_vec
|
1550 | 1550 | !> author: Jacob Williams
|
1551 | 1551 | ! date: 12/4/2013
|
1552 | 1552 | !
|
1553 |
| -! Initialize the json-fortran module. |
| 1553 | +! Initialize the JSON-Fortran module. |
1554 | 1554 | ! The routine must be called before any of the routines are used.
|
1555 | 1555 | ! It can also be called after using the module and encountering exceptions.
|
1556 | 1556 | !
|
|
0 commit comments