From 0db106d9cda69d1723ff35e36eb1bc54e8d361a2 Mon Sep 17 00:00:00 2001 From: GregPlowman Date: Mon, 8 Jan 2018 11:15:06 +1100 Subject: [PATCH] MArray documentation - can be mutated --- src/MArray.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/MArray.jl b/src/MArray.jl index 4a59a9a1..07d7d82e 100644 --- a/src/MArray.jl +++ b/src/MArray.jl @@ -5,7 +5,7 @@ Construct a statically-sized, mutable array `MArray`. The data may optionally be -provided upon construction and cannot be mutated later. The `S` parameter is a Tuple-type +provided upon construction and can be mutated later. The `S` parameter is a Tuple-type specifying the dimensions, or size, of the array - such as `Tuple{3,4,5}` for a 3×4×5-sized array. The `L` parameter is the `length` of the array and is always equal to `prod(S)`. Constructors may drop the `L` and `T` parameters if they are inferrable from the input