Skip to content

Commit 06e5413

Browse files
committed
🌟 Fix formatting in meshbuilder documentation
1 parent c14c1d5 commit 06e5413

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

src/utils.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -86,6 +86,7 @@ x = 0:0.1:1
8686
y = 0:0.1:1
8787
z = 0:0.1:1
8888
mesh = meshbuilder(x, y, z) # returns a 3xN array of points
89+
```
8990
"""
9091
function meshbuilder(x::AbstractRange, y::AbstractRange, z::AbstractRange)::Array{Float64, 2}
9192
nx, ny, nz = length(x), length(y), length(z)

0 commit comments

Comments
 (0)