Skip to content

Commit fba0706

Browse files
committed
Cleanup to produce fewer diffs with upstream
1 parent 1e24e72 commit fba0706

File tree

5 files changed

+7
-9
lines changed

5 files changed

+7
-9
lines changed

README.md

Lines changed: 4 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ straightforward. Here is an example. See the json_example.f90 file
5555
for more examples.
5656

5757
```fortran
58-
program example1
58+
program example1
5959
6060
use json_module
6161
@@ -91,7 +91,7 @@ Writing a json file is slightly more complicated and involves the use
9191
of pointers. See the json_example.f90 file for more examples.
9292

9393
```fortran
94-
program example2
94+
program example2
9595
9696
use json_module
9797
@@ -130,7 +130,7 @@ of pointers. See the json_example.f90 file for more examples.
130130
!cleanup:
131131
call json_destroy(p)
132132
133-
end program example2
133+
end program example2
134134
```
135135

136136
Other Comments
@@ -143,5 +143,4 @@ many of that code's bugs.
143143

144144
More About JSON
145145
------------
146-
147-
For more information about JSON, see: [json.org](http://www.json.org/)
146+
For more information about JSON, see: <http://www.json.org/>

cmake/jsonfortran-config.cmake.in

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,3 @@ include ( "@CMAKE_BINARY_DIR@/@[email protected]" )
1313

1414
# Tell the compiler where to find the mod files
1515
set ( @CMAKE_PROJECT_NAME@_INCLUDE_DIRS "@CMAKE_Fortran_MODULE_DIRECTORY@" )
16-

cmake/pickFortranCompilerFlags.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,4 @@ if ( NOT Fortran_FLAGS_INIT )
3333
add_compile_options ( -fcheck=all )
3434
endif ( ENABLE_RUNTIME_CHECKS )
3535
endif ( "${CMAKE_Fortran_COMPILER_ID}" MATCHES "Intel" )
36-
endif ( NOT Fortran_FLAGS_INIT )
36+
endif ( NOT Fortran_FLAGS_INIT )

cmake/pkg/jsonfortran-config.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ set_and_check ( @PACKAGE_NAME@_CONFIG_INSTALL_DIR "@PACKAGE_EXPORT_INSTALL_DIR@"
1313
include ( "${@PACKAGE_NAME@_CONFIG_INSTALL_DIR}/@[email protected]" )
1414

1515
# Make the module files available via include
16-
set_and_check ( @CMAKE_PROJECT_NAME@_INCLUDE_DIRS "@PACKAGE_INSTALL_MOD_DIR@" )
16+
set_and_check ( @CMAKE_PROJECT_NAME@_INCLUDE_DIRS "@PACKAGE_INSTALL_MOD_DIR@" )

cmake/uninstall.cmake.in

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,4 +20,4 @@ foreach(file ${files})
2020
else(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
2121
message(STATUS "File $ENV{DESTDIR}${file} does not exist.")
2222
endif(IS_SYMLINK "$ENV{DESTDIR}${file}" OR EXISTS "$ENV{DESTDIR}${file}")
23-
endforeach(file)
23+
endforeach(file)

0 commit comments

Comments
 (0)