From cc784f6564fb5d3284f99188e6ab606c73c05f02 Mon Sep 17 00:00:00 2001 From: Henro Veijer Date: Mon, 2 Mar 2026 18:34:03 +0100 Subject: [PATCH] Invalid token --- henrovnix_ok/README.org | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/henrovnix_ok/README.org b/henrovnix_ok/README.org index b4219f136..780c3b06c 100755 --- a/henrovnix_ok/README.org +++ b/henrovnix_ok/README.org @@ -2006,7 +2006,7 @@ let trim = lib.strings.trim; # ---------- minimal INI-ish parser (sections + raw lines) ---------- readMaybe = p: if builtins.pathExists p then builtins.readFile p else ""; - normalizeLine = l: trim (l`ib.replaceStrings [ "\r" ] [ "" ] l); + normalizeLine = l: trim (lib.replaceStrings [ "\r" ] [ "" ] l); parseSections = text: let lines = map normalizeLine (lib.splitString "\n" text);