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);