From b51ff166194a64f9cc15aca8deea948cbc8eda70 Mon Sep 17 00:00:00 2001 From: Vijay Janapa Reddi Date: Wed, 9 Jul 2025 18:02:37 -0400 Subject: [PATCH] Updates course navigation to new module location Updates the "Start Here" link in the course navigation to reflect the new location of the setup README.md file. --- bin/tito.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/tito.py b/bin/tito.py index 0801277f..8d61e193 100755 --- a/bin/tito.py +++ b/bin/tito.py @@ -258,7 +258,7 @@ def cmd_info(args): nav_text.append("🎯 Detailed Guide: ", style="dim") nav_text.append("COURSE_GUIDE.md\n", style="cyan underline") nav_text.append("🚀 Start Here: ", style="dim") - nav_text.append("projects/setup/README.md", style="cyan underline") + nav_text.append("modules/setup/README.md", style="cyan underline") console.print(Panel(nav_text, title="📋 Course Navigation", border_style="bright_green")) console.print()