From 887fecf979854ab65026939d8047fd8bb7d54437 Mon Sep 17 00:00:00 2001 From: Oishe Farhan Date: Fri, 3 Jul 2026 15:32:38 -0400 Subject: [PATCH] docs(table): fix single-column example in mo.ui.table docstring The "single column of data" example duplicated the multi-column dict example above it. Show a flat list of strings instead. --- marimo/_plugins/ui/_impl/table.py | 5 +---- 1 file changed, 1 insertion(+), 4 deletions(-) diff --git a/marimo/_plugins/ui/_impl/table.py b/marimo/_plugins/ui/_impl/table.py index 3459e70184c..1ebfb54478c 100644 --- a/marimo/_plugins/ui/_impl/table.py +++ b/marimo/_plugins/ui/_impl/table.py @@ -371,10 +371,7 @@ class table( ```python table = mo.ui.table( - data=[ - {"first_name": "Michael", "last_name": "Scott"}, - {"first_name": "Dwight", "last_name": "Schrute"}, - ], + data=["Michael Scott", "Dwight Schrute"], label="Users", ) ```