Skip to content

Commit

Permalink
fix fill example docs (#843)
Browse files Browse the repository at this point in the history
  • Loading branch information
rafaqz authored Nov 4, 2024
1 parent fea3ac3 commit 978f838
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/array/array.jl
Original file line number Diff line number Diff line change
Expand Up @@ -494,14 +494,14 @@ Keywords are the same as for [`DimArray`](@ref).
```jldoctest
julia> using DimensionalData, Random; Random.seed!(123);
julia> rand(Bool, X(2), Y(4))
julia> fill(true, X(2), Y(4))
╭──────────────────────╮
│ 2×4 DimArray{Bool,2} │
├──────────────── dims ┤
↓ X, → Y
└──────────────────────┘
0 0 0 0
1 0 0 1
1 1 1 1
1 1 1 1
```
"""
Base.fill
Expand Down

0 comments on commit 978f838

Please sign in to comment.