From 2bd7d24221f4cfa73cde378824ed97a6b53a9624 Mon Sep 17 00:00:00 2001 From: Marian Soltys <41568766+maso7@users.noreply.github.com> Date: Thu, 15 Aug 2024 11:34:03 +0200 Subject: [PATCH] build --- dist/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/dist/index.js b/dist/index.js index a8e0d2f..c76e6a7 100644 --- a/dist/index.js +++ b/dist/index.js @@ -2831,10 +2831,10 @@ function formatMatchOutput(match, outputMaxChars) { if (match.length === 0) { match = "--- No matches found ---"; } else if (match.length > outputMaxChars) { - let truncationNotice = "\n--- Rest is truncated due to \"" + outputMaxChars + "\" chars limit ---"; + let truncationNotice = "\n--- The rest of matches is truncated due to \"" + outputMaxChars + "\" chars limit ---"; match = match.substring(0, outputMaxChars - truncationNotice.length) + truncationNotice; } else { - match += "\n--- End of Matches ---"; + match += "\n--- The end of Matches ---"; } return JSON.stringify(match);