This commit is contained in:
Adeeb Shihadeh
2026-04-15 15:55:37 -07:00
parent 83e6e7da93
commit 9042cfa1ad
2 changed files with 2 additions and 3 deletions

View File

@@ -150,8 +150,8 @@ class GlossaryTreeprocessor(Treeprocessor):
best = candidate
continue
_, best_start, best_end = best
_, current_start, current_end = candidate
_, _, best_start, best_end = best
_, _, current_start, current_end = candidate
if current_start < best_start:
best = candidate
continue

View File

@@ -9,7 +9,6 @@ site_dir = "docs_site/"
extra_css = ["stylesheets/extra.css"]
nav = [
{ "Home" = "index.md" },
{ "Getting Started" = [
{ "What is openpilot?" = "getting-started/what-is-openpilot.md" },
] },