From b5c7e95954b8759c715a08276f315a4c99616c39 Mon Sep 17 00:00:00 2001 From: Elias Carvalho Date: Mon, 29 Jul 2024 15:39:12 -0300 Subject: [PATCH] Update code --- src/table.jl | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/table.jl b/src/table.jl index a4d7237..fac08d0 100644 --- a/src/table.jl +++ b/src/table.jl @@ -2,8 +2,8 @@ # Licensed under the MIT License. See LICENSE in the project root. # ------------------------------------------------------------------ -struct Table{T,C} - rows::T +struct Table{R,C} + rows::R crs::C end