From 52072f2136be925f5a8a80f09e27eedcdf3d2328 Mon Sep 17 00:00:00 2001 From: Jeremiah Xing Date: Sat, 12 Jul 2025 00:55:01 +1000 Subject: [PATCH] fix a typo fron to from at file src/storage/table/tuple --- src/storage/table/tuple.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/storage/table/tuple.cpp b/src/storage/table/tuple.cpp index a5b525053..f53e1c960 100644 --- a/src/storage/table/tuple.cpp +++ b/src/storage/table/tuple.cpp @@ -65,7 +65,7 @@ Tuple::Tuple(std::vector values, const Schema *schema) { } /** - * constructor for creating a new tuple by copying fron existing bytes + * constructor for creating a new tuple by copying from existing bytes */ Tuple::Tuple(RID rid, const char *data, uint32_t size) { rid_ = rid;