Skip to content

Commit

Permalink
Fix README typo (#216)
Browse files Browse the repository at this point in the history
  • Loading branch information
christopher-dG authored and TotalVerb committed Sep 16, 2017
1 parent 0e31389 commit 8105d33
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ JSON.print(io::IO, v::AbstractVector)
JSON.print{T, N}(io::IO, v::Array{T, N})
```

Writes a compact (no extra whitespace or identation) JSON representation
Writes a compact (no extra whitespace or indentation) JSON representation
to the supplied IO.

```julia
Expand All @@ -59,7 +59,7 @@ JSON.parse(io::IO; dicttype=Dict)
JSON.parsefile(filename::AbstractString; dicttype=Dict, use_mmap=true)
```

Parses a JSON `AbstractString` or IO stream into a nested Array or Dict.
Parses a JSON `AbstractString` or IO stream into a nested `Array` or `Dict`.

The `dicttype` indicates the dictionary type (`<: Associative`) that
JSON objects are parsed to. It defaults to `Dict` (the built-in Julia
Expand Down

0 comments on commit 8105d33

Please sign in to comment.