From 77464a6741fd42cc3ee63306edc17cc6a4457989 Mon Sep 17 00:00:00 2001 From: Haakon Ludvig Langeland Ervik <45243236+haakon-e@users.noreply.github.com> Date: Thu, 31 Oct 2024 14:08:15 -0700 Subject: [PATCH] doc typos --- src/array/broadcast.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/array/broadcast.jl b/src/array/broadcast.jl index f3ecb79d6..b92abbb7b 100644 --- a/src/array/broadcast.jl +++ b/src/array/broadcast.jl @@ -106,7 +106,7 @@ end Dimensional broadcast macro extending Base Julia broadcasting to work with missing and permuted dimensions. -Will permute and resshape singleton dimensions +Will permute and reshape singleton dimensions so that all [`AbstractDimArray`](@ref) in a broadcast will broadcast over matching dimensions. @@ -150,7 +150,7 @@ da1 = ones(X(3)) da2 = fill(2, Y(4), X(3)) @d @. da1 * da2 -# Use parentheses areound `@.` if you need to pass options +# Use parentheses around `@.` if you need to pass options @d (@. da1 * da2 .+ 5) dims=(Y, X) ```