From 4eec637db6329d5875b7a013e100cf56d146426b Mon Sep 17 00:00:00 2001 From: Mus M Date: Tue, 19 Dec 2017 13:49:19 -0500 Subject: [PATCH] Update deprecated syntax in README --- README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b6bf827..2e8d881 100644 --- a/README.md +++ b/README.md @@ -88,10 +88,10 @@ x = mxarray(Dict("a"=>1, "b"=>"string", "c"=>[1,2,3])) # converts a Julia dictio The function ``mxarray`` can also convert a compound type to a Julia struct: ```julia -type S - x::Float64 - y::Vector{Int32} - z::Bool +struct S + x::Float64 + y::Vector{Int32} + z::Bool end s = S(1.2, Int32[1, 2], false)