@@ -22,15 +22,15 @@ module json_module
2222! JSON-FORTRAN: A Fortran 2008 JSON API
2323!
2424! http://github.com/jacobwilliams/json-fortran
25- !
25+ !
2626! Copyright (c) 2014, Jacob Williams
2727!
2828! All rights reserved.
29- !
29+ !
3030! Redistribution and use in source and binary forms, with or without modification,
3131! are permitted provided that the following conditions are met:
3232! * Redistributions of source code must retain the above copyright notice, this
33- ! list of conditions and the following disclaimer.
33+ ! list of conditions and the following disclaimer.
3434! * Redistributions in binary form must reproduce the above copyright notice, this
3535! list of conditions and the following disclaimer in the documentation and/or
3636! other materials provided with the distribution.
@@ -50,18 +50,18 @@ module json_module
5050! Original FSON License:
5151!
5252! http://github.com/josephalevin/fson
53- !
53+ !
5454! Copyright (c) 2012 Joseph A. Levin
55- !
55+ !
5656! Permission is hereby granted, free of charge, to any person obtaining a copy of this
5757! software and associated documentation files (the "Software"), to deal in the Software
5858! without restriction, including without limitation the rights to use, copy, modify, merge,
5959! publish, distribute, sublicense, and/or sell copies of the Software, and to permit
6060! persons to whom the Software is furnished to do so, subject to the following conditions:
61- !
61+ !
6262! The above copyright notice and this permission notice shall be included in all copies or
6363! substantial portions of the Software.
64- !
64+ !
6565! THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
6666! INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR
6767! PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
@@ -528,7 +528,7 @@ end subroutine array_callback_func
528528 ! end subroutine example1
529529 !
530530 ! Note: it should NOT be called for a json_value pointer than has already been
531- ! added to another json_value structure, since doing so may render the
531+ ! added to another json_value structure, since doing so may render the
532532 ! other structure invalid. Consider the following example:
533533 ! subroutine example2(p)
534534 ! type(json_value),pointer,intent(out) :: p
@@ -538,7 +538,7 @@ end subroutine array_callback_func
538538 ! call json_create_object(q,'q')
539539 ! call json_add(q,'val',1)
540540 ! call json_add(p, q) !add q to p structure
541- ! ! do NOT call json_destroy(q) here, because q is
541+ ! ! do NOT call json_destroy(q) here, because q is
542542 ! ! now part of the output structure p. p should be destroyed
543543 ! ! somewhere upstream by the caller of this routine.
544544 ! nullify(q) !OK, but not strictly necessary
@@ -1566,7 +1566,7 @@ end subroutine json_value_create
15661566!
15671567! AUTHOR
15681568! Jacob Williams : 1/22/2014 : The original version of this
1569- ! routine was not properly freeing the memory.
1569+ ! routine was not properly freeing the memory.
15701570! It has been rewritten.
15711571!
15721572! SOURCE
@@ -4088,7 +4088,7 @@ end subroutine json_get_array
40884088!
40894089! INPUTS
40904090! The inputs can be:
4091- ! * file and unit : the specified unit is used to read JSON from file.
4091+ ! * file and unit : the specified unit is used to read JSON from file.
40924092! [note if unit is already open, then the filename is ignored]
40934093! * file : JSON is read from file using internal unit number
40944094! * str : JSON data is read from the string instead
@@ -5541,7 +5541,7 @@ end subroutine real_to_string
55415541! compact_real_string
55425542!
55435543! DESCRIPTION
5544- ! Compact a string representing a real number, so that
5544+ ! Compact a string representing a real number, so that
55455545! the same value is displayed with fewer characters.
55465546!
55475547! SEE ALSO
@@ -5714,4 +5714,4 @@ end subroutine json_print_error_message
57145714
57155715! *****************************************************************************************
57165716 end module json_module
5717- ! *****************************************************************************************
5717+ ! *****************************************************************************************
0 commit comments