You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@paimon.apache.org by lz...@apache.org on 2023/03/17 02:06:05 UTC

[incubator-paimon] branch master updated: [hotfix] Correct typos in document file-layouts (#610)

This is an automated email from the ASF dual-hosted git repository.

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new b76ce142 [hotfix] Correct typos in document file-layouts (#610)
b76ce142 is described below

commit b76ce142d71f341c759b954276e06500ee68e990
Author: GuojunLi <li...@bytedance.com>
AuthorDate: Fri Mar 17 10:05:59 2023 +0800

    [hotfix] Correct typos in document file-layouts (#610)
---
 docs/content/docs/concepts/file-layouts.md | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/docs/content/docs/concepts/file-layouts.md b/docs/content/docs/concepts/file-layouts.md
index 6d2f0d82..a532f6df 100644
--- a/docs/content/docs/concepts/file-layouts.md
+++ b/docs/content/docs/concepts/file-layouts.md
@@ -57,9 +57,9 @@ Table Store adapts the LSM tree (log-structured merge-tree) as the data structur
 
 ### Sorted Runs
 
-LSM tree organizes files into several sorted runs. A sorted run consists of one or multiple [data file]({{< ref "docs/concepts/file-layouts#data-files" >}})s and each data file belongs to exactly one sorted run.
+LSM tree organizes files into several sorted runs. A sorted run consists of one or multiple [data files]({{< ref "docs/concepts/file-layouts#data-files" >}}) and each data file belongs to exactly one sorted run.
 
-Records within a data file are sorted by their primary keys. WIthin a sorted run, ranges of primary keys of data files never overlap.
+Records within a data file are sorted by their primary keys. Within a sorted run, ranges of primary keys of data files never overlap.
 
 {{< img src="/img/sorted-runs.png">}}