From 614e8c9ed4c1d0a1c1f758533692af773d2541ac Mon Sep 17 00:00:00 2001 From: Christopher Rackauckas Date: Thu, 25 Jan 2024 06:14:27 -0500 Subject: [PATCH] Fix docstring for getting the i'th array of array --- src/vector_of_array.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/vector_of_array.jl b/src/vector_of_array.jl index b4f6f2e7..d230e707 100644 --- a/src/vector_of_array.jl +++ b/src/vector_of_array.jl @@ -11,7 +11,7 @@ act like it's a higher-dimensional vector, and easily convert it to different fo structure is: ```julia -A[i] # Returns the ith array in the vector of arrays +A.u[i] # Returns the ith array in the vector of arrays A[j, i] # Returns the jth component in the ith array A[j1, ..., jN, i] # Returns the (j1,...,jN) component of the ith array ```