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 best = candidate
continue continue
_, best_start, best_end = best _, _, best_start, best_end = best
_, current_start, current_end = candidate _, _, current_start, current_end = candidate
if current_start < best_start: if current_start < best_start:
best = candidate best = candidate
continue continue

View File

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