From 76fbd7dda5754a47cd67d7b7c10d937ff195ecf7 Mon Sep 17 00:00:00 2001 From: Ben Welsh Date: Fri, 14 Apr 2023 06:58:16 -0700 Subject: [PATCH] Fix typo in Table docs --- src/components/Table/stories/docs/truncate.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Table/stories/docs/truncate.md b/src/components/Table/stories/docs/truncate.md index 3867d9ee..4e6cc2ba 100644 --- a/src/components/Table/stories/docs/truncate.md +++ b/src/components/Table/stories/docs/truncate.md @@ -1,4 +1,4 @@ -When you table has 10 or more rows, consider clipping it by setting the `truncated` option. When it is enabled, the table is clipped and readers must request to see all rows by clicking a button below the table. By default this configuration will limit the table to five records. You can change the cutoff point by adjusting the `truncateLength` option. +When your table has 10 or more rows, consider clipping it by setting the `truncated` option. When it is enabled, the table is clipped and readers must request to see all rows by clicking a button below the table. By default this configuration will limit the table to five records. You can change the cutoff point by adjusting the `truncateLength` option. This is a good option for simple tables with row counts between 10 and 30. It works best when the table doesn't require interactivity.