Skip to content

Commit

Permalink
Correct expression for vcat (#19603)
Browse files Browse the repository at this point in the history
Related to https://discourse.julialang.org/t/whats-the-meaning-of-the-array-syntax/938.
I understand that the expression for `vcat` is `[A; B; C; ...]` not `[A, B, C, ...]`.
  • Loading branch information
bkamins authored and simonbyrne committed Dec 15, 2016
1 parent eadf449 commit ce75e94
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion doc/src/manual/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -150,7 +150,7 @@ A few special expressions correspond to calls to functions with non-obvious name
| Expression | Calls |
|:----------------- |:---------------------- |
| `[A B C ...]` | [`hcat()`](@ref) |
| `[A, B, C, ...]` | [`vcat()`](@ref) |
| `[A; B; C; ...]` | [`vcat()`](@ref) |
| `[A B; C D; ...]` | [`hvcat()`](@ref) |
| `A'` | [`ctranspose()`](@ref) |
| `A.'` | [`transpose()`](@ref) |
Expand Down

0 comments on commit ce75e94

Please sign in to comment.