Skip to content

Commit 7c8f7b8

Browse files
committed
documentation updates and minor change.
1 parent 73c8973 commit 7c8f7b8

File tree

3 files changed

+3
-4
lines changed

3 files changed

+3
-4
lines changed

CONTRIBUTING.md

-1
Original file line numberDiff line numberDiff line change
@@ -99,6 +99,5 @@ git rebase upstream/master
9999
- *Do NOT* allow your editor to make a bunch of indentation or white space changes, that will introduce non-substantive changes on lines that you have not actually edited.
100100
- The coding style is modern free-form Fortran, consistent with the Fortran 2008 standard. Note that the two supported compilers (ifort and gfortran) do not currently include the entire Fortran 2008 standard. Therefore, only those language features supported by Gfortran 4.9 and Intel 13.1.0 are currently allowed. This also means that previous versions of these compilers are not supported, and major changes to the code to support earlier compilers (or Fortran 95) will not be accepted. At some point in the future (when compiler support has improved), all Fortran 2008 features will be allowed.
101101
- All subroutines and functions *must* be properly documented. This includes useful inline comments as well as comment blocks using the [FORD](https://github.com/cmacmackin/ford/wiki/Writing-Documentation) syntax.
102-
- For simplicity, JSON-Fortran currently consists of one module file. It is not envisioned that it will ever need to expand to include multiple files (if it does, there would need to be a very good reason).
103102

104103
[top](#contributing-to-json-fortran)

LICENSE

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
JSON-Fortran: A Fortran 2008 JSON API
22
<https://github.com/jacobwilliams/json-fortran>
33

4-
Copyright (c) 2014-2015, Jacob Williams
4+
Copyright (c) 2014-2016, Jacob Williams
55
All rights reserved.
66

77
Redistribution and use in source and binary forms, with or without modification,

src/json_string_utilities.F90

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ module json_string_utilities
2222
end interface
2323
!******************************************************
2424

25-
# ifdef USE_UCS4
25+
#ifdef USE_UCS4
2626
!******************************************************
2727
!>
2828
! Provide a means to convert to UCS4 while
@@ -42,7 +42,7 @@ module json_string_utilities
4242
end interface
4343
public :: operator(==)
4444
!******************************************************
45-
# endif
45+
#endif
4646

4747
public :: integer_to_string
4848
public :: real_to_string

0 commit comments

Comments
 (0)