Skip to content

Commit

Permalink
Merge pull request JuliaIO#14 from WestleyArgentum/patch-2
Browse files Browse the repository at this point in the history
each_match => eachmatch
  • Loading branch information
dirk committed Apr 5, 2013
2 parents c46eb47 + c73ad55 commit 420fcdc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/JSON.jl
Expand Up @@ -72,7 +72,7 @@ function parse(strng::String)
len_esc::Int = 0
index_esc::Int = 1

esc_locations::Array{Int64,1} = map(x->x.offset, [each_match(r"[\"\\\\]", strng)...])
esc_locations::Array{Int64,1} = map(x->x.offset, [eachmatch(r"[\"\\\\]", strng)...])
len_esc = length(esc_locations)

function parse_object()
Expand Down

0 comments on commit 420fcdc

Please sign in to comment.