From 5c888a0b474ed2fc45c7640b4e73e2bf272f2d3c Mon Sep 17 00:00:00 2001 From: Jesse Duffield Date: Thu, 11 Jan 2024 09:57:05 +1100 Subject: [PATCH] Update codebase guide fixes a line that used an incorrect path --- docs/dev/Codebase_Guide.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/dev/Codebase_Guide.md b/docs/dev/Codebase_Guide.md index 6803088d2..93a771274 100644 --- a/docs/dev/Codebase_Guide.md +++ b/docs/dev/Codebase_Guide.md @@ -52,7 +52,7 @@ * `pkg/gui/controllers/helpers/window_arrangement_helper.go`: defines the layout of the UI and the size/position of each window * `pkg/gui/context/context.go`: defines the different contexts * `pkg/gui/context/setup.go`: defines initialisation code for all contexts -* `pkg/gui/context/context.go`: manages the lifecycle of contexts, the context stack, and focus changes. +* `pkg/gui/context.go`: manages the lifecycle of contexts, the context stack, and focus changes. * `pkg/gui/types/views.go`: defines views * `pkg/gui/views.go`: defines the ordering of views (front to back) and their initialisation code * `pkg/gui/gui_common.go`: defines gui-specific methods that all controllers and helpers have access to