From cb09eda2af979c68d3b771f6cdbb117c9883c70e Mon Sep 17 00:00:00 2001 From: "mintlify[bot]" <109931778+mintlify[bot]@users.noreply.github.com> Date: Fri, 26 Jun 2026 16:27:07 +0000 Subject: [PATCH] docs: fix typos in Log table engine page --- reference/engines/table-engines/log-family/log.mdx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/engines/table-engines/log-family/log.mdx b/reference/engines/table-engines/log-family/log.mdx index 610e53923..5324cf869 100644 --- a/reference/engines/table-engines/log-family/log.mdx +++ b/reference/engines/table-engines/log-family/log.mdx @@ -32,10 +32,10 @@ See the detailed description of the [CREATE TABLE](/reference/statements/create/ ## Writing the data {#table_engines-log-writing-the-data} -The `Log` engine efficiently stores data by writing each column to its own file. For every table, the Log engine writes the following files to the specified storage path: +The `Log` engine efficiently stores data by writing each column to its own file. For every table, the `Log` engine writes the following files to the specified storage path: - `.bin`: A data file for each column, containing the serialized and compressed data. -`__marks.mrk`: A marks file, storing offsets and row counts for each data block inserted. Marks are used to facilitate efficient query execution by allowing the engine to skip irrelevant data blocks during reads. +- `__marks.mrk`: A marks file, storing offsets and row counts for each data block inserted. Marks are used to facilitate efficient query execution by allowing the engine to skip irrelevant data blocks during reads. ### Writing process {#writing-process}