From d2fe8df897d59ea81aa9e13744a35aa48e9f0bd9 Mon Sep 17 00:00:00 2001 From: "Rob Swindell (on Debian Linux)" <rob@synchro.net> Date: Sun, 3 Dec 2023 17:31:56 -0800 Subject: [PATCH] Correct comment about return value of function Why does a function this small need a comment describing its return value in the first place? <sigh> --- exec/load/newsutil.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/exec/load/newsutil.js b/exec/load/newsutil.js index 091cd04919..f270b1b9e4 100644 --- a/exec/load/newsutil.js +++ b/exec/load/newsutil.js @@ -1,10 +1,6 @@ -// newsutil.js - // Generates and parses USENET news headers // for use with newslink.js and nntpservice.js -// $Id: newsutil.js,v 1.34 2020/06/08 03:20:37 rswindell Exp $ - require("mailutil.js", 'mail_get_name'); require("smbdefs.js", 'RFC822HEADER'); @@ -215,7 +211,7 @@ function parse_news_header(hdr, line) } /* - * Returns TRUE if hdr and/or body are modified + * Returns decoded body text */ function decode_news_body(hdr, body) { -- GitLab