Skip to content

Commit 4982d78

Browse files
committed
Fix capitalization of JSON-Fortran
The complicated PRs and merges left some instances of json-fortran and JSON-FORTRAN. See #118 and #124
1 parent d79d09b commit 4982d78

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

json-fortran.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ macro: USE_UCS4
55
output_dir: ./doc
66
media_dir: ./media
77
project_github: https://github.com/jacobwilliams/json-fortran
8-
summary: JSON-FORTRAN -- A Fortran 2008 JSON API
8+
summary: JSON-Fortran -- A Fortran 2008 JSON API
99
author: Jacob Williams
1010
github: https://github.com/jacobwilliams
1111
website: http://degenerateconic.com

src/json_module.F90

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
!> author: Jacob Williams
33
! license: BSD
44
!
5-
!# JSON-FORTRAN:
5+
!# JSON-Fortran:
66
! A Fortran 2008 JSON (JavaScript Object Notation) API.
77
!
88
! [TOC]
@@ -22,12 +22,12 @@
2222
! The documentation given here assumes ```USE_UCS4``` **is not** defined.
2323
#endif
2424
!
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
2626
! 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
2828
! library *EXCEPT* for file names which must be of ```'DEFAULT'``` character kind,
2929
! 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```.
3131
!
3232
!@note Most string literal constants of default kind are fine to pass as arguments to
3333
! JSON-Fortran procedures since they have been overloaded to accept ```intent(in)```
@@ -37,7 +37,7 @@
3737
!
3838
!## License
3939
!
40-
! **json-fortran License:**
40+
! **JSON-Fortran License:**
4141
!
4242
! JSON-Fortran: A Fortran 2008 JSON API
4343
!
@@ -151,7 +151,7 @@ module json_module
151151

152152
!*********************************************************
153153
!>
154-
! Default character kind used by json-fortran.
154+
! Default character kind used by JSON-Fortran.
155155
! If ISO 10646 (UCS4) support is available, use that,
156156
! otherwise, gracefully fall back on 'DEFAULT' characters.
157157
! Currently only gfortran >= 4.9.2 will correctly support
@@ -1550,7 +1550,7 @@ end subroutine wrap_json_file_get_string_vec
15501550
!> author: Jacob Williams
15511551
! date: 12/4/2013
15521552
!
1553-
! Initialize the json-fortran module.
1553+
! Initialize the JSON-Fortran module.
15541554
! The routine must be called before any of the routines are used.
15551555
! It can also be called after using the module and encountering exceptions.
15561556
!

0 commit comments

Comments
 (0)