Skip to content

Commit

Permalink
docs: fix kv store column headers (#24941)
Browse files Browse the repository at this point in the history
  • Loading branch information
ccurme authored Aug 1, 2024
1 parent 2204d8c commit 02db66d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/scripts/kv_store_feat_table.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,8 +82,8 @@
def get_kv_store_table() -> str:
"""Get the table of KV stores."""

header = ["name", "package", "local", "downloads"]
title = ["Class", "Package", "Local", "Downloads"]
header = ["name", "local", "package", "downloads"]
title = ["Class", "Local", "Package", "Downloads"]
rows = [title, [":-"] + [":-:"] * (len(title) - 1)]
for loader, feats in sorted(KV_STORE_FEAT_TABLE.items()):
if not feats or loader in DEPRECATED:
Expand Down

0 comments on commit 02db66d

Please sign in to comment.