From c8f7f49494495095e0f83c91fdaffcec86bfd691 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bogumi=C5=82=20Kami=C5=84ski?= Date: Mon, 11 Feb 2019 18:24:41 +0100 Subject: [PATCH] re-introduce tuple of vectors --- docs/src/lib/indexing.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/src/lib/indexing.md b/docs/src/lib/indexing.md index 708f32762f..268154a1b9 100644 --- a/docs/src/lib/indexing.md +++ b/docs/src/lib/indexing.md @@ -151,7 +151,7 @@ If it is not performed a description explicitly mentions that the data is assign * `length(v)` must be equal to `length(cols)` * column names in `v` must be the same as selected by `cols` * an operation `df[row, col] = v[col]` for `col in cols` is performed -* if `v` is a `AbstractVector{<:AbstractVector}`: +* if `v` is a `AbstractVector{<:AbstractVector}` or `NTuple{N,AbstractVector}`: * `length(v)` must be equal to `length(cols)` * an operation `df[row, col] = v[i]` for `(i, col) in enumerate(cols)` is performed * otherwise an error is thrown