From d366245c2df0ffc0d3d0351017950424da24141a Mon Sep 17 00:00:00 2001 From: Marc Beninca Date: Tue, 8 Jul 2025 16:11:49 +0200 Subject: [PATCH] fix --- sh/code.awk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/sh/code.awk b/sh/code.awk index 6499931..dd4423b 100644 --- a/sh/code.awk +++ b/sh/code.awk @@ -79,7 +79,7 @@ BEGIN { } else if (match($0, RE_FUNCTION, m)) { split(doc, array, "\n") for (item in array) { - print item " " m[1] + print array[item] " " m[1] } reset() } else { @@ -91,7 +91,7 @@ BEGIN { } else if (match($0, RE_FUNCTION, m)) { split(doc, array, "\n") for (item in array) { - print item " " m[1] + print array[item] " " m[1] } reset() } else {