Skip to content

Commit 94bbfd4

Browse files
[Docs] Add missing code block (#44094)
* [Docs] Add missing code block * Fix block order
1 parent aae68a5 commit 94bbfd4

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

base/abstractarray.jl

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2126,7 +2126,9 @@ julia> hvncat(((3, 3), (3, 3), (6,)), true, a, b, c, d, e, f)
21262126
4 5 6
21272127
```
21282128
2129+
21292130
# Examples for construction of the arguments:
2131+
```julia
21302132
[a b c ; d e f ;;;
21312133
g h i ; j k l ;;;
21322134
m n o ; p q r ;;;
@@ -2143,6 +2145,7 @@ julia> hvncat(((3, 3), (3, 3), (6,)), true, a, b, c, d, e, f)
21432145
_____________
21442146
4 = elements in each 4d slice (4,)
21452147
=> shape = ((2, 1, 1), (3, 1), (4,), (4,)) with `rowfirst` = true
2148+
```
21462149
"""
21472150
hvncat(dimsshape::Tuple, row_first::Bool, xs...) = _hvncat(dimsshape, row_first, xs...)
21482151
hvncat(dim::Int, xs...) = _hvncat(dim, true, xs...)

0 commit comments

Comments
 (0)