summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJesse Duffield <jessedduffield@gmail.com>2024-01-11 09:57:05 +1100
committerJesse Duffield <jessedduffield@gmail.com>2024-01-11 09:57:05 +1100
commit5c888a0b474ed2fc45c7640b4e73e2bf272f2d3c (patch)
tree759b5535c0e2d03ad7537530e135097d5bf9ecef
parent498092a8ec679ba78ee67e01d90b87d735a7fa06 (diff)
Update codebase guide
fixes a line that used an incorrect path
-rw-r--r--docs/dev/Codebase_Guide.md2
1 files changed, 1 insertions, 1 deletions
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