From 1a1d4ed1e4048a39899970366d272633fbcf26db Mon Sep 17 00:00:00 2001 From: Randall Winkhart Date: Sat, 28 Dec 2024 19:53:14 -0500 Subject: [PATCH] Fix typo in ParseConfig documentation --- core/configParser.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/configParser.go b/core/configParser.go index 1a91579..8e9d80e 100644 --- a/core/configParser.go +++ b/core/configParser.go @@ -20,7 +20,7 @@ func loadConfig() *ini.File { } // ParseConfig reads the libmutton.ini file and returns a slice of values for the specified keys. -// Requires: requestedValues (a slice of length 2 arrays each containing a section and a key name), +// Requires: valuesRequested (a slice of length 2 arrays each containing a section and a key name), // missingValueError (an error message to display if a key is missing a value, set to "" for auto-generated or "0" to exit/return silently with code 0). // Returns: config (slice of values for the specified keys). func ParseConfig(valuesRequested [][2]string, missingValueError string) []string {