From ce75e94ba5a59e6510b2c15a52be48039136ae59 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogumi=C5=82=20Kami=C5=84ski?= Date: Thu, 15 Dec 2016 18:03:42 +0100 Subject: [PATCH] Correct expression for vcat (#19603) 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, ...]`. --- doc/src/manual/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/manual/functions.md b/doc/src/manual/functions.md index 921a316d5b010..8a8fbc3773766 100644 --- a/doc/src/manual/functions.md +++ b/doc/src/manual/functions.md @@ -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) |