From 81bd635b09adec77e40ed9e822be41f3b4166212 Mon Sep 17 00:00:00 2001 From: Sasha Koshka Date: Fri, 23 Aug 2024 01:14:08 -0400 Subject: [PATCH] Improve doc comment for GlobalConfig --- application.go | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/application.go b/application.go index 6404556..fbb72c7 100644 --- a/application.go +++ b/application.go @@ -229,8 +229,9 @@ func ApplicationConfig (app ApplicationDescription) (config.ConfigCloser, error) } var currentGlobalConfig config.Config -// GlobalConfig returns the global config. This is managed by Nasin and must not -// be closed by the application. +// GlobalConfig returns the global config. It contains options that apply to +// Tomo/Nasin itself, such as the style sheet and the icon set. This is managed +// by Nasin and must not be closed by the application. func GlobalConfig () config.Config { return currentGlobalConfig }