Skip to content

Commit b3e278c

Browse files
committed
Fix broken read from string example
- `json%load_from_string` example had incorrect json syntax! - extra period removed - typo fixed
1 parent 25780a9 commit b3e278c

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@ __NEWS:__ As of June 7, 2015,
5454
downloaded and installed with the [homebrew](https://brew.sh) package
5555
manager on Mac OS X. Once [homebrew](https://brew.sh) is installed,
5656
make sure that the formulae are up to date, view the package options
57-
and caveates, and install the
57+
and caveats, and install the
5858
[json-fortran formula](http://braumeister.org/formula/json-fortran):
5959

6060
```bash
@@ -170,7 +170,7 @@ Reading JSON from a string
170170
---------------
171171
JSON can also be read directly from a character string like so:
172172
```fortran
173-
call json%load_from_string('{"name", "Leonidas"}')
173+
call json%load_from_string('{"name": "Leonidas"}')
174174
```
175175

176176
Modifying variables in a JSON file
@@ -281,7 +281,7 @@ The API documentation for the latest release version can be found [here](http://
281281
[top](#json-fortran-)
282282
Contributing [![Ready in backlog](https://badge.waffle.io/jacobwilliams/json-fortran.png?label=Ready&title=Ready)](CONTRIBUTING.md)
283283
------------
284-
Want to help? Take a quick look at our [contributing guidelines](CONTRIBUTING.md) then claim something in [the "ready" column on our Waffle.io](https://waffle.io/jacobwilliams/json-fortran) and [Fork. Commit. Pull request.](https://help.github.com/articles/fork-a-repo).
284+
Want to help? Take a quick look at our [contributing guidelines](CONTRIBUTING.md) then claim something in [the "ready" column on our Waffle.io](https://waffle.io/jacobwilliams/json-fortran) and [Fork. Commit. Pull request.](https://help.github.com/articles/fork-a-repo)
285285

286286
[top](#json-fortran-)
287287
License

0 commit comments

Comments
 (0)