From 4b3456a9fcde46f71e6ed5f3023510f97a63bb41 Mon Sep 17 00:00:00 2001 From: Kunnapat Thippayapalaphonkul Date: Thu, 19 Dec 2024 16:54:55 +0700 Subject: [PATCH] docs: fixed code example. (#1445) --- mkdocs/docs/api.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/mkdocs/docs/api.md b/mkdocs/docs/api.md index eaffb84a54..250f7ad72b 100644 --- a/mkdocs/docs/api.md +++ b/mkdocs/docs/api.md @@ -1050,7 +1050,7 @@ with table.update_spec() as update: Partition fields can also be removed via the `remove_field` API if it no longer makes sense to partition on those fields. ```python -with table.update_spec() as update:some_partition_name +with table.update_spec() as update: # Remove the partition field with the name update.remove_field("some_partition_name") ```